Browse Source

Make this happy on gcc2

PHP-5.2.1RC1
Rasmus Lerdorf 17 years ago
parent
commit
53a63b82d4
  1. 4
      ext/date/php_date.c

4
ext/date/php_date.c

@ -34,6 +34,10 @@
static __inline __int64 llabs( __int64 i ) { return i >= 0? i: -i; }
#endif
#if defined(__GNUC__) && __GNUC__ < 3
static __inline __int64_t llabs( __int64_t i ) { return i >= 0 ? i : -i; }
#endif
/* {{{ arginfo */
static
ZEND_BEGIN_ARG_INFO_EX(arginfo_date, 0, 0, 1)

Loading…
Cancel
Save