summaryrefslogtreecommitdiff
path: root/ext/date/lib/unixtime2tm.c
diff options
context:
space:
mode:
authorDerick Rethans <derick@php.net>2006-05-15 08:54:16 +0000
committerDerick Rethans <derick@php.net>2006-05-15 08:54:16 +0000
commit7975b4eb0e263e83fea8c19fddfc5cae4a8f9fbf (patch)
tree3f31eb012d9a67887723d8cefb8695ed79ecf2a5 /ext/date/lib/unixtime2tm.c
parentbb82fb0530b8c1011e9d7a208af29f91e11f8c96 (diff)
downloadphp-git-7975b4eb0e263e83fea8c19fddfc5cae4a8f9fbf.tar.gz
- MFH: Fixed windows compile error.
Diffstat (limited to 'ext/date/lib/unixtime2tm.c')
-rw-r--r--ext/date/lib/unixtime2tm.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/ext/date/lib/unixtime2tm.c b/ext/date/lib/unixtime2tm.c
index 4834b470d9..b5f96c7e15 100644
--- a/ext/date/lib/unixtime2tm.c
+++ b/ext/date/lib/unixtime2tm.c
@@ -32,12 +32,6 @@
#include <strings.h>
#endif
-#if defined(_MSC_VER)
-#define TIMELIB_LL_CONST(n) n ## i64
-#else
-#define TIMELIB_LL_CONST(n) n ## ll
-#endif
-
static int month_tab_leap[12] = { -1, 30, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334 };
static int month_tab[12] = { 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334 };