repo.or.cz
/
tinycc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
moved ELF stuff to tccelf.c - fixed #include and #line parsing - removed size limit...
[tinycc.git]
/
stdbool.h
blob
6ed13a611aa247d1dbe370d9d96a1e15e16a7453
1
#ifndef _STDBOOL_H
2
#define _STDBOOL_H
3
4
/* ISOC99 boolean */
5
6
#define bool _Bool
7
#define true 1
8
#define false 0
9
10
#endif
/* _STDBOOL_H */