From 76b5c17036370a6c5050aed188b551e6591cc103 Mon Sep 17 00:00:00 2001 From: Pierre Joye Date: Mon, 4 May 2009 21:03:00 +0000 Subject: [PATCH] - revert last commit and fix inline --- win32/php_stdint.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/win32/php_stdint.h b/win32/php_stdint.h index ed53e75355e..d3adcc29230 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 ]