Skip to content

Commit 79f83f1

Browse files
authored
Add include guards to dtoa.h (#1233)
1 parent 35c125d commit 79f83f1

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

dtoa.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2222
* THE SOFTWARE.
2323
*/
24+
#ifndef DTOA_H
25+
#define DTOA_H
2426

2527
//#define JS_DTOA_DUMP_STATS
2628

@@ -81,3 +83,5 @@ size_t u64toa(char *buf, uint64_t n);
8183
size_t i64toa(char *buf, int64_t n);
8284
size_t u64toa_radix(char *buf, uint64_t n, unsigned int radix);
8385
size_t i64toa_radix(char *buf, int64_t n, unsigned int radix);
86+
87+
#endif /* DTOA_H */

0 commit comments

Comments
 (0)