0
0
mirror of https://github.com/netwide-assembler/nasm.git synced 2025-09-22 10:43:39 -04:00

compiler.h: add missing #endif

Embarrassing: missing #endif

Signed-off-by: H. Peter Anvin (Intel) <hpa@zytor.com>
This commit is contained in:
H. Peter Anvin (Intel)
2020-07-06 12:50:12 -07:00
parent 30844a4c62
commit 1348627b72

View File

@@ -203,6 +203,7 @@ typedef enum bool { false, true } bool;
/* Fallback, technically non-portable if p is uninitialized. */
# define offsetin(p,m) ((const char *)&((p).m) - (const char *)&(p))
# endif
#endif
/* The container_of construct: if p is a pointer to member m of
container class c, then return a pointer to the container of which