musl/include/stdbool.h

15 lines
167 B
C
Raw Normal View History

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