Skip to content

Commit ffca50c

Browse files
committed
- revert last commit and fix inline
1 parent c48241a commit ffca50c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

win32/php_stdint.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,8 @@ typedef uint64_t uintmax_t;
238238
#define INTMAX_C INT64_C
239239
#define UINTMAX_C UINT64_C
240240

241-
#define llabs(i) (i >= 0? i : -i)
241+
static __inline int64_t llabs( int64_t i ) { return i >= 0? i: -i; }
242+
242243
#endif // __STDC_CONSTANT_MACROS ]
243244

244245

0 commit comments

Comments
 (0)