]> pd.if.org Git - pdclib.old/blob - includes/stdbool.h
Modify various POSIX platform files so you can build on top of glibc for testing
[pdclib.old] / 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 #ifndef __cplusplus
13 #define bool                          _Bool
14 #define true                          1
15 #define false                         0
16 #endif
17
18 #define __bool_true_false_are_defined 1
19
20 #endif
21