repo.or.cz
/
cmake.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
ENH: fix uppercase version so defines are not upper as well
[cmake.git]
/
Utilities
/
cmxmlrpc
/
bool.h
blob
8bf54f34f764ed5b005d197aa56d0953c860644a
1
#ifndef BOOL_H_INCLUDED
2
#define BOOL_H_INCLUDED
3
4
#ifndef TRUE
5
#define TRUE (1)
6
#endif
7
#ifndef FALSE
8
#define FALSE (0)
9
#endif
10
11
#ifndef __cplusplus
12
#ifndef HAVE_BOOL
13
#define HAVE_BOOL
14
typedef
int bool
;
15
#endif
16
#endif
17
18
#endif