fix typos on RLIM_NLIMITS, remove _GNU_SOURCE test for it
[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