diff options
Diffstat (limited to 'include/msapi')
-rw-r--r-- | include/msapi/stdbool.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/include/msapi/stdbool.h b/include/msapi/stdbool.h new file mode 100644 index 0000000000..db5d31a544 --- /dev/null +++ b/include/msapi/stdbool.h @@ -0,0 +1,21 @@ +/* stdbool.h standard header */ + +#ifndef _STDBOOL +#define _STDBOOL + +#define __bool_true_false_are_defined 1 + +#ifndef __cplusplus + +#define bool _Bool +#define false 0 +#define true 1 + +#endif /* __cplusplus */ + +#endif /* _STDBOOL */ + +/* + * Copyright (c) 1992-2010 by P.J. Plauger. ALL RIGHTS RESERVED. + * Consult your license regarding permissions and restrictions. +V5.30:0009 */ |