add mips64 port
[musl.git] / include / stdbool.h
bloba9d7ab787839727b5fada461710a265afd1dff27
1 #ifndef _STDBOOL_H
2 #define _STDBOOL_H
4 #ifndef __cplusplus
6 #define true 1
7 #define false 0
8 #define bool _Bool
10 #endif
12 #define __bool_true_false_are_defined 1
14 #endif