more header cleanup and conformance fixes - locale.h, time.h
[musl] / include / stdbool.h
1 #ifndef _STDBOOL_H
2 #define _STDBOOL_H
3
4 #ifndef __cplusplus
5
6 #define true 1
7 #define false 0
8
9 typedef _Bool bool;
10
11 #endif
12
13 #endif