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