summaryrefslogtreecommitdiff
path: root/include/stdbool.h
blob: 3d8fbf2a04b864629960fe69ad3c8c223b561042 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef _STDBOOL_H
#define _STDBOOL_H

#ifndef __cplusplus

#define true 1
#define false 0

typedef _Bool bool;

#endif

#endif