From: Pierre Joye Date: Mon, 4 May 2009 21:03:00 +0000 (+0000) Subject: - revert last commit and fix inline X-Git-Tag: php-5.4.0alpha1~191^2~3753 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=76b5c17036370a6c5050aed188b551e6591cc103;p=php - revert last commit and fix inline --- diff --git a/win32/php_stdint.h b/win32/php_stdint.h index ed53e75355..d3adcc2923 100644 --- a/win32/php_stdint.h +++ b/win32/php_stdint.h @@ -264,7 +264,7 @@ typedef uint64_t uintmax_t; #define INTMAX_C INT64_C #define UINTMAX_C UINT64_C -#define llabs(i) (i >= 0? i : -i) +static __inline int64_t llabs( int64_t i ) { return i >= 0? i: -i; } #endif // __STDC_CONSTANT_MACROS ]