ultimatepp/bazaar/plugin/tcc/include/stdbool.h
koldo e14e3b4aac tcc: Moving it to Bazaar/plugin (2)
git-svn-id: svn://ultimatepp.org/upp/trunk@3781 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2011-08-25 21:07:51 +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 */