Patch php_date.c.patch for Date/time related Bug #51183
Patch version 2010-03-10 08:59 UTC
Return to Bug #51183 |
Download this patch
Patch Revisions:
Developer: jose-marcio.martins@mines-paristech.fr
--- ext/date/php_date.c.org Thu Feb 11 23:37:50 2010
+++ ext/date/php_date.c Mon Mar 1 21:40:40 2010
@@ -35,7 +35,7 @@
#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; }
+static long long php_date_llabs( long long i ) { return i >= 0 ? i : -i; }
#endif
/* {{{ arginfo */
|