From 194751404b09c532bb57f37de4c25a5b5580da93 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Tue, 4 Oct 2016 18:11:57 -0700 Subject: [PATCH] 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 --- include/nasmint.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/nasmint.h b/include/nasmint.h index 9bb935cf6..6be623bf5 100644 --- a/include/nasmint.h +++ b/include/nasmint.h @@ -1,5 +1,5 @@ /* - * inttypes.h + * nasmint.h * * Small ersatz subset of , deriving the types from * . @@ -9,8 +9,8 @@ * a 01111111... bit pattern. */ -#ifndef INTTYPES_H -#define INTTYPES_H +#ifndef NASM_NASMINT_H +#define NASM_NASMINT_H #include @@ -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 */