From 63cacad27123662290958bab5d2e4ea02db95048 Mon Sep 17 00:00:00 2001 From: Ozkan Sezer Date: Fri, 9 Aug 2019 23:50:20 +0300 Subject: compiler.h: fix bad typedef in case of HAVE__BOOL Fix stray # mark in typedef _Bool bool. What compiler has _Bool and not ? Weird... Signed-off-by: H. Peter Anvin (Intel) --- include/compiler.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') 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 # elif defined(HAVE__BOOL) -# typedef _Bool bool + typedef _Bool bool; # define false 0 # define true 1 # else -- cgit v1.2.1