From cd34e1c27ae31c643c278aac179cf3f4cf54f9b5 Mon Sep 17 00:00:00 2001 From: Derick Rethans Date: Fri, 13 Jul 2007 17:49:50 +0000 Subject: [PATCH] - MFH: Let's always use the macro as llabs() requires c99. --- ext/date/lib/timelib.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/ext/date/lib/timelib.c b/ext/date/lib/timelib.c index 6b2fb81327..6dd86e1034 100644 --- a/ext/date/lib/timelib.c +++ b/ext/date/lib/timelib.c @@ -28,11 +28,7 @@ m = NULL; \ } \ -#if defined(_MSC_VER) - #define TIMELIB_LLABS(y) y < 0 ? (y * -1) : y -#else - #define TIMELIB_LLABS(y) llabs(y) -#endif +#define TIMELIB_LLABS(y) (y < 0 ? (y * -1) : y) timelib_time* timelib_time_ctor() { -- 2.50.1