summaryrefslogtreecommitdiff
path: root/nt/inc/stdbool.h
blob: 521291fdd03cdf6cc741262baba6822809eb1104 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef _NT_STDBOOL_H_
#define _NT_STDBOOL_H_
/*
 * stdbool.h exists in GCC, but not in MSVC.
 */

#ifdef __GNUC__
# include_next <stdbool.h>
#else
# define _Bool signed char
# define bool _Bool
# define false 0
# define true 1
#endif

#endif	/* _NT_STDBOOL_H_ */