xref: /PHP-7.3/win32/php_stdbool.h (revision a5670004)
1 #ifndef _STDBOOL_H
2 #define _STDBOOL_H
3 #if !defined(__BOOL_DEFINED)
4 #  define bool short
5 
6 /* The other macros must be usable in preprocessor directives.  */
7 #  define false 0
8 #  define true 1
9 #  define __bool_true_false_are_defined 1
10 # endif
11 #endif /* _STDBOOL_H */
12 
13 /*
14  * Local variables:
15  * tab-width: 4
16  * c-basic-offset: 4
17  * End:
18  * vim600: sw=4 ts=4 fdm=marker
19  * vim<600: sw=4 ts=4
20  */
21