X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=stdbool.h;fp=stdbool.h;h=dc93679f183c247a271eba07cde2c4624f3bdb41;hb=fe2ffa3779dbc1ad31d15037e50d3d110341a159;hp=0000000000000000000000000000000000000000;hpb=037d49a62448bcf80cce678470e2f2fef819d6c5;p=pdclib.old diff --git a/stdbool.h b/stdbool.h new file mode 100644 index 0000000..dc93679 --- /dev/null +++ b/stdbool.h @@ -0,0 +1,17 @@ +#ifndef _PDCLIB_STDBOOL_H +#define _PDCLIB_STDBOOL_H _PDCLIB_STDBOOL_H + +/* $Id$ */ + +/* 7.16 Boolean type and values + + This file is part of the Public Domain C Library (PDCLib). + Permission is granted to use, modify, and / or redistribute at will. +*/ + +#define bool _Bool +#define true 1 +#define false 0 +#define __bool_true_false_are_defined 1 + +#endif