ultimatepp/bazaar/Tcc/lib/stdbool.h
koldo 94bedda349 Tcc: Compile to executable
git-svn-id: svn://ultimatepp.org/upp/trunk@1500 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2009-08-12 20:15:57 +00:00

10 lines
136 B
C

#ifndef _STDBOOL_H
#define _STDBOOL_H
/* ISOC99 boolean */
#define bool _Bool
#define true 1
#define false 0
#endif /* _STDBOOL_H */