repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
external
/
bsd
/
pcc
/
dist
/
pcc-libs
/
libpcc
/
include
/
libpcc_stdbool.h
blob
fce5c52c653e4d5bb31684fba88ea7c1fe5ff548
1
#ifndef _LIBPCC_STDBOOL_H_
2
#define _LIBPCC_STDBOOL_H_
3
4
#define __bool_true_false_are_defined 1
5
6
#ifndef __cplusplus
7
8
#define bool _Bool
9
#define true 1
10
#define false 0
11
12
#endif
13
14
#endif