mpw-tools/include/stdbool.h
2016-07-25 16:57:33 -04:00

14 lines
185 B
C

#ifndef __bool_true_false_are_defined
#define __bool_true_false_are_defined 1
#ifndef __cplusplus
#define false 0
#define true 1
#define bool _Bool
typedef int _Bool;
#endif
#endif