]> granicus.if.org Git - php/commitdiff
- revert last commit and fix inline
authorPierre Joye <pajoye@php.net>
Mon, 4 May 2009 21:03:00 +0000 (21:03 +0000)
committerPierre Joye <pajoye@php.net>
Mon, 4 May 2009 21:03:00 +0000 (21:03 +0000)
win32/php_stdint.h

index ed53e75355e366d59cfc96c2a115cbb83dc3c642..d3adcc29230edc71afcdff49ba48aa12af8e31e3 100644 (file)
@@ -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 ]