From: Pierre Joye Date: Mon, 4 May 2009 16:29:09 +0000 (+0000) Subject: - fix build X-Git-Tag: php-5.4.0alpha1~191^2~3760 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=33a27b036b58a55260fcb372106e46a0d40ef736;p=php - fix build --- diff --git a/ext/date/php_date.c b/ext/date/php_date.c index 22110f1e20..5f495ed173 100644 --- a/ext/date/php_date.c +++ b/ext/date/php_date.c @@ -32,6 +32,11 @@ #include #include +#ifdef PHP_WIN32 +# include "win32/php_stdint.h" +static inline int64_t llabs( int64_t i ) { return i >= 0? i: -i; } +#endif + /* {{{ arginfo */ ZEND_BEGIN_ARG_INFO_EX(arginfo_date, 0, 0, 1) ZEND_ARG_INFO(0, format)