From ffca50ca0de92c4085aa74778e9ca40d6d577d6a Mon Sep 17 00:00:00 2001 From: Pierre Joye Date: Mon, 4 May 2009 21:03:20 +0000 Subject: - revert last commit and fix inline --- win32/php_stdint.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'win32/php_stdint.h') diff --git a/win32/php_stdint.h b/win32/php_stdint.h index 6167596f46..6eb8ce48f0 100644 --- a/win32/php_stdint.h +++ b/win32/php_stdint.h @@ -238,7 +238,8 @@ 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 ] -- cgit v1.2.1