Free Electron
bool.h
1 #ifndef AL_BOOL_H
2 #define AL_BOOL_H
3 
4 #ifdef HAVE_STDBOOL_H
5 #include <stdbool.h>
6 #endif
7 
8 #ifndef bool
9 #ifdef HAVE_C99_BOOL
10 #define bool _Bool
11 #else
12 #define bool int
13 #endif
14 #define false 0
15 #define true 1
16 #endif
17 
18 #endif /* AL_BOOL_H */