nasmint.h: change header guards to NASM_NASMINT_H

Change the header guards for nasmint.h to NASM_NASMINT_H instead of
INTTYPES_H.

Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
This commit is contained in:
H. Peter Anvin 2016-10-04 18:11:57 -07:00
parent 4b189f89d0
commit 194751404b

View File

@ -1,5 +1,5 @@
/* /*
* inttypes.h * nasmint.h
* *
* Small ersatz subset of <inttypes.h>, deriving the types from * Small ersatz subset of <inttypes.h>, deriving the types from
* <limits.h>. * <limits.h>.
@ -9,8 +9,8 @@
* a 01111111... bit pattern. * a 01111111... bit pattern.
*/ */
#ifndef INTTYPES_H #ifndef NASM_NASMINT_H
#define INTTYPES_H #define NASM_NASMINT_H
#include <limits.h> #include <limits.h>
@ -216,4 +216,4 @@ typedef unsigned char uint8_t;
#define INT64_MAX INT64_C(9223372036854775807) #define INT64_MAX INT64_C(9223372036854775807)
#define UINT64_MAX UINT64_C(18446744073709551615) #define UINT64_MAX UINT64_C(18446744073709551615)
#endif /* INTTYPES_H */ #endif /* NASM_NASMINT_H */