diff options
author | Pierre Joye <pajoye@php.net> | 2009-12-09 10:39:03 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2009-12-09 10:39:03 +0000 |
commit | 177985b97bc32dbd23052b5c77857f436e3eb20e (patch) | |
tree | ae92ca815b40574ee20ba24be22367353b6a13f8 /win32/php_stdbool.h | |
parent | 48c7eedebfec2476bd30f6c7db17fd026f883413 (diff) | |
download | php-git-177985b97bc32dbd23052b5c77857f436e3eb20e.tar.gz |
- #50334, add missing file
Diffstat (limited to 'win32/php_stdbool.h')
-rw-r--r-- | win32/php_stdbool.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/win32/php_stdbool.h b/win32/php_stdbool.h new file mode 100644 index 0000000000..83c808f60e --- /dev/null +++ b/win32/php_stdbool.h @@ -0,0 +1,11 @@ +#ifndef _STDBOOL_H
+#define _STDBOOL_H
+#if !defined(__BOOL_DEFINED)
+# define bool short
+
+/* The other macros must be usable in preprocessor directives. */
+# define false 0
+# define true 1
+# define __bool_true_false_are_defined 1
+# endif
+#endif /* _STDBOOL_H */
|