repo.or.cz
/
openal-soft.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Avoid an unnecessary aluVector
[openal-soft.git]
/
include
/
bool.h
blob
6f714d09ed14de401851c8dafc9a4a5555e1b3a3
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 */