- fix php_date_llabs declaration

This commit is contained in:
Pierre Joye 2010-02-11 22:37:50 +00:00
parent ed03634a8c
commit da94f0736e

View File

@ -32,10 +32,12 @@
#include <time.h>
#ifdef PHP_WIN32
# include "win32/php_stdint.h"
#endif
static __inline __int64 php_date_llabs( __int64 i ) { return i >= 0? i: -i; }
#elif defined(__GNUC__) && __GNUC__ < 3
static __inline __int64_t php_date_llabs( __int64_t i ) { return i >= 0 ? i : -i; }
#else
static __inline long long php_date_llabs( long long i ) { return i >= 0 ? i : -i; }
#endif
/* {{{ arginfo */
ZEND_BEGIN_ARG_INFO_EX(arginfo_date, 0, 0, 1)