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