musl/include/stdbool.h

15 lines
167 B
C
Raw Normal View History

2011-02-12 00:22:29 -05:00
#ifndef _STDBOOL_H
#define _STDBOOL_H
#ifndef __cplusplus
#define true 1
#define false 0
2011-09-20 14:51:56 -04:00
#define bool _Bool
2011-02-12 00:22:29 -05:00
2011-09-20 14:51:56 -04:00
#define __bool_true_false_are_defined 1
2011-02-12 00:22:29 -05:00
#endif
#endif