aboutsummaryrefslogtreecommitdiff
path: root/arch/all/core/include/stdbool.h
blob: a4cd04f207d0aea5ff74c032e87f551d2228ca5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* ****************************************************************************
 * Booleans.
 * ************************************************************************* */
#include <cdefs.h>
#if !__USE_CXX98
# define bool _Bool

# define true  1
# define false 0

# define __bool_true_false_are_defined 1
#endif