Makefile: make "make spotless" actually work
[syslinux/sherbszt.git] / memdump / stdbool.h
blob81cb05f550da573dbb0cb7fa1dd243d13f6c67f9
1 /*
3 * stdbool.h
4 */
6 #ifndef _STDBOOL_H
7 #define _STDBOOL_H
9 #ifndef __cplusplus
11 #if !defined(__STDC_VERSION__) || (__STDC_VERSION__ < 199901L)
12 # if !defined(__GNUC__) ||(__GNUC__ < 3)
13 typedef char _Bool; /* For C compilers without _Bool */
14 # endif
15 #endif
17 #define bool _Bool
18 #define true 1
19 #define false 0
21 #else
23 /* C++ */
24 #define bool bool
25 #define true true
26 #define false false
28 #endif
30 #define __bool_true_false_are_defined 1
32 #endif /* _STDBOOL_H */