pajoye Wed, 09 Dec 2009 10:39:03 +0000 Revision: http://svn.php.net/viewvc?view=revision&revision=291913
Log: - #50334, add missing file Bug: http://bugs.php.net/50334 (Closed) crypt ignores sha512 prefix Changed paths: A php/php-src/branches/PHP_5_3/win32/php_stdbool.h A php/php-src/trunk/win32/php_stdbool.h Added: php/php-src/branches/PHP_5_3/win32/php_stdbool.h =================================================================== --- php/php-src/branches/PHP_5_3/win32/php_stdbool.h (rev 0) +++ php/php-src/branches/PHP_5_3/win32/php_stdbool.h 2009-12-09 10:39:03 UTC (rev 291913) @@ -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 */ Added: php/php-src/trunk/win32/php_stdbool.h =================================================================== --- php/php-src/trunk/win32/php_stdbool.h (rev 0) +++ php/php-src/trunk/win32/php_stdbool.h 2009-12-09 10:39:03 UTC (rev 291913) @@ -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 */
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php