summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorOzkan Sezer <sezero@users.sourceforge.net>2019-08-09 23:50:20 +0300
committerH. Peter Anvin (Intel) <hpa@zytor.com>2019-08-09 13:58:31 -0700
commit63cacad27123662290958bab5d2e4ea02db95048 (patch)
treee891506451b599ae82ebd592a13da6a4c9eab3d9 /include
parentd73b10abd5b0f4da35c7b9575e29c734be91b42d (diff)
downloadnasm-63cacad27123662290958bab5d2e4ea02db95048.tar.gz
compiler.h: fix bad typedef in case of HAVE__BOOL
Fix stray # mark in typedef _Bool bool. What compiler has _Bool and not <stdbool.h>? Weird... Signed-off-by: H. Peter Anvin (Intel) <hpa@zytor.com>
Diffstat (limited to 'include')
-rw-r--r--include/compiler.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/compiler.h b/include/compiler.h
index b7ac32a0..0363136e 100644
--- a/include/compiler.h
+++ b/include/compiler.h
@@ -168,7 +168,7 @@ char *strrchrnul(const char *, int);
# ifdef HAVE_STDBOOL_H
# include <stdbool.h>
# elif defined(HAVE__BOOL)
-# typedef _Bool bool
+ typedef _Bool bool;
# define false 0
# define true 1
# else