]> pd.if.org Git - pdclib/blob - includes/stdbool.h
66166e16deea21a6e783fe77e2615f3fe31a7612
[pdclib] / includes / stdbool.h
1 /* $Id$ */
2
3 /* 7.16 Boolean type and values <stdbool.h>
4
5    This file is part of the Public Domain C Library (PDCLib).
6    Permission is granted to use, modify, and / or redistribute at will.
7 */
8
9 #ifndef _PDCLIB_STDBOOL_H
10 #define _PDCLIB_STDBOOL_H _PDCLIB_STDBOOL_H
11
12 #define bool                          _Bool
13 #define true                          1
14 #define false                         0
15 #define __bool_true_false_are_defined 1
16
17 #endif
18