mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-02-17 17:19:35 +08:00
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:
parent
4b189f89d0
commit
194751404b
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* inttypes.h
|
||||
* nasmint.h
|
||||
*
|
||||
* Small ersatz subset of <inttypes.h>, deriving the types from
|
||||
* <limits.h>.
|
||||
@ -9,8 +9,8 @@
|
||||
* a 01111111... bit pattern.
|
||||
*/
|
||||
|
||||
#ifndef INTTYPES_H
|
||||
#define INTTYPES_H
|
||||
#ifndef NASM_NASMINT_H
|
||||
#define NASM_NASMINT_H
|
||||
|
||||
#include <limits.h>
|
||||
|
||||
@ -216,4 +216,4 @@ typedef unsigned char uint8_t;
|
||||
#define INT64_MAX INT64_C(9223372036854775807)
|
||||
#define UINT64_MAX UINT64_C(18446744073709551615)
|
||||
|
||||
#endif /* INTTYPES_H */
|
||||
#endif /* NASM_NASMINT_H */
|
||||
|
Loading…
Reference in New Issue
Block a user