metal-cos/include/stdbool.h
2014-06-30 15:52:35 -07:00

11 lines
119 B
C

#ifndef _STDBOOL_H_
#define _STDBOOL_H_
#define false 0
#define true 1
#define bool _Bool
#endif /* _STDBOOL_H_ */