@@ -1,5 +1,5 @@
-#ifndef _TOOLS_BE_BSWAP_H
-#define _TOOLS_BE_BSWAP_H
+#ifndef TOOLS_BE_BSWAP_H
+#define TOOLS_BE_BSWAP_H
#include <stdint.h>
@@ -33,4 +33,4 @@ static inline void put_unaligned_be64(uint64_t val, void *_p)
put_unaligned_le64(__builtin_bswap64(val), _p);
}
-#endif /* _TOOLS_BE_BSWAP_H */
+#endif /* TOOLS_BE_BSWAP_H */
@@ -1,5 +1,5 @@
-#ifndef _TOOLS_BE_BYTESHIFT_H
-#define _TOOLS_BE_BYTESHIFT_H
+#ifndef TOOLS_BE_BYTESHIFT_H
+#define TOOLS_BE_BYTESHIFT_H
#include <stdint.h>
@@ -49,4 +49,4 @@ static inline void put_unaligned_be64(uint64_t val, void *_p)
put_unaligned_be32(val, p + 4);
}
-#endif /* _TOOLS_BE_BYTESHIFT_H */
+#endif /* TOOLS_BE_BYTESHIFT_H */
@@ -1,5 +1,5 @@
-#ifndef _TOOLS_BE_DIRECT_H
-#define _TOOLS_BE_DIRECT_H
+#ifndef TOOLS_BE_DIRECT_H
+#define TOOLS_BE_DIRECT_H
#include <stdint.h>
@@ -45,4 +45,4 @@ static inline void put_unaligned_be64(uint64_t val, void *_p)
*p = val;
}
-#endif /* _TOOLS_BE_DIRECT_H */
+#endif /* TOOLS_BE_DIRECT_H */
@@ -1,5 +1,5 @@
-#ifndef _TOOLS_BE_ENDIAN_H
-#define _TOOLS_BE_ENDIAN_H
+#ifndef TOOLS_BE_ENDIAN_H
+#define TOOLS_BE_ENDIAN_H
#ifndef _BSD_SOURCE
# define _BSD_SOURCE 1
@@ -37,4 +37,4 @@ static inline void put_unaligned_be64(uint64_t val, void *_p)
put_unaligned_le64(htobe64(val), _p);
}
-#endif /* _TOOLS_BE_ENDIAN_H */
+#endif /* TOOLS_BE_ENDIAN_H */
@@ -1,5 +1,5 @@
-#ifndef _TOOLS_BE_STRUCT_H
-#define _TOOLS_BE_STRUCT_H
+#ifndef TOOLS_BE_STRUCT_H
+#define TOOLS_BE_STRUCT_H
#include <stdint.h>
@@ -57,4 +57,4 @@ static inline void put_unaligned_be64(uint64_t val, void *_p)
p->v = val;
}
-#endif /* _TOOLS_BE_STRUCT_H */
+#endif /* TOOLS_BE_STRUCT_H */
@@ -1,5 +1,5 @@
-#ifndef _TOOLS_LE_BSWAP_H
-#define _TOOLS_LE_BSWAP_H
+#ifndef TOOLS_LE_BSWAP_H
+#define TOOLS_LE_BSWAP_H
#include <stdint.h>
@@ -33,4 +33,4 @@ static inline void put_unaligned_le64(uint64_t val, void *_p)
put_unaligned_be64(__builtin_bswap64(val), _p);
}
-#endif /* _TOOLS_LE_BSWAP_H */
+#endif /* TOOLS_LE_BSWAP_H */
@@ -1,5 +1,5 @@
-#ifndef _TOOLS_LE_BYTESHIFT_H
-#define _TOOLS_LE_BYTESHIFT_H
+#ifndef TOOLS_LE_BYTESHIFT_H
+#define TOOLS_LE_BYTESHIFT_H
#include <stdint.h>
@@ -49,4 +49,4 @@ static inline void put_unaligned_le64(uint64_t val, void *_p)
put_unaligned_le32(val >> 32, p + 4);
}
-#endif /* _TOOLS_LE_BYTESHIFT_H */
+#endif /* TOOLS_LE_BYTESHIFT_H */
@@ -1,5 +1,5 @@
-#ifndef _TOOLS_LE_DIRECT_H
-#define _TOOLS_LE_DIRECT_H
+#ifndef TOOLS_LE_DIRECT_H
+#define TOOLS_LE_DIRECT_H
#include <stdint.h>
@@ -45,4 +45,4 @@ static inline void put_unaligned_le64(uint64_t val, void *_p)
*p = val;
}
-#endif /* _TOOLS_LE_DIRECT_H */
+#endif /* TOOLS_LE_DIRECT_H */
@@ -1,5 +1,5 @@
-#ifndef _TOOLS_LE_ENDIAN_H
-#define _TOOLS_LE_ENDIAN_H
+#ifndef TOOLS_LE_ENDIAN_H
+#define TOOLS_LE_ENDIAN_H
#ifndef _BSD_SOURCE
# define _BSD_SOURCE 1
@@ -37,4 +37,4 @@ static inline void put_unaligned_le64(uint64_t val, void *_p)
put_unaligned_be64(htole64(val), _p);
}
-#endif /* _TOOLS_LE_ENDIAN_H */
+#endif /* TOOLS_LE_ENDIAN_H */
@@ -1,5 +1,5 @@
-#ifndef _TOOLS_LE_STRUCT_H
-#define _TOOLS_LE_STRUCT_H
+#ifndef TOOLS_LE_STRUCT_H
+#define TOOLS_LE_STRUCT_H
#include <stdint.h>
@@ -57,4 +57,4 @@ static inline void put_unaligned_le64(uint64_t val, void *_p)
p->v = val;
}
-#endif /* _TOOLS_LE_STRUCT_H */
+#endif /* TOOLS_LE_STRUCT_H */
Underscore-capital symbols belong to the implementation, i.e. the libc, and we are not it. Signed-off-by: H. Peter Anvin <hpa@zytor.com> --- tools/include/tools/unaligned/be_bswap.h | 6 +++--- tools/include/tools/unaligned/be_byteshift.h | 6 +++--- tools/include/tools/unaligned/be_direct.h | 6 +++--- tools/include/tools/unaligned/be_endian.h | 6 +++--- tools/include/tools/unaligned/be_struct.h | 6 +++--- tools/include/tools/unaligned/le_bswap.h | 6 +++--- tools/include/tools/unaligned/le_byteshift.h | 6 +++--- tools/include/tools/unaligned/le_direct.h | 6 +++--- tools/include/tools/unaligned/le_endian.h | 6 +++--- tools/include/tools/unaligned/le_struct.h | 6 +++--- 10 files changed, 30 insertions(+), 30 deletions(-)