Ignore the listening angle for the wet path sound cones
[openal-soft.git] / include / bool.h
blob6f714d09ed14de401851c8dafc9a4a5555e1b3a3
1 #ifndef AL_BOOL_H
2 #define AL_BOOL_H
4 #ifdef HAVE_STDBOOL_H
5 #include <stdbool.h>
6 #endif
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
18 #endif /* AL_BOOL_H */