mm/include/stdbool.h

8 lines
108 B
C

#ifndef _STDBOOL_H_
#define _STDBOOL_H_
#define false 0
#define true !false
#endif /* _STDBOOL_H_ */