diff options
Diffstat (limited to 'portable/stdbool.h')
-rw-r--r-- | portable/stdbool.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/portable/stdbool.h b/portable/stdbool.h index 61dd8a1..bfbf4c4 100644 --- a/portable/stdbool.h +++ b/portable/stdbool.h @@ -1,5 +1,4 @@ -/* $Id$ - * +/* * Portability wrapper around <stdbool.h>. * * Provides the bool and _Bool types and the true and false constants, @@ -16,7 +15,9 @@ #if HAVE_STDBOOL_H # include <stdbool.h> #else -# if !HAVE__BOOL +# if HAVE__BOOL +# define bool _Bool +# else # ifdef __cplusplus typedef bool _Bool; # elif _WIN32 |