repo.or.cz
/
splint-patched.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Some consistency changes to library & headers flags.
[splint-patched.git]
/
test
/
bool.h
blob
f36537f21104ed499ccddb7342813a439253ab67
1
#ifndef SPLINT_BOOL_H
2
#define SPLINT_BOOL_H
3
4
/*@-cppnames@*/
5
/*@-exporttype@*/
6
typedef
/*@abstract@*/
int bool
;
7
/*@=exporttype@*/
8
/*@=cppnames@*/
9
10
#ifndef FALSE
11
/*@constant unused bool FALSE@*/
12
#define FALSE false
13
#endif
14
15
#ifndef TRUE
16
/*@constant unused bool TRUE@*/
17
#define TRUE true
18
#endif
19
20
# endif
/* SPLINT_BOOL_H */