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