diff options
author | Anantha Kesari H Y <hyanantha@php.net> | 2004-09-25 15:26:55 +0000 |
---|---|---|
committer | Anantha Kesari H Y <hyanantha@php.net> | 2004-09-25 15:26:55 +0000 |
commit | 7d57757a8a3a33f6ac86a2f9eea03fd7077fe5ad (patch) | |
tree | 0046a1eec42237a4d5bc18604c845e7c466e8880 /ext/standard/datetime.c | |
parent | 6692794433695b27c7ef4dfbc012ce7f3d79adb9 (diff) | |
download | php-git-7d57757a8a3a33f6ac86a2f9eea03fd7077fe5ad.tar.gz |
removed redundant NEW_LIBC checks
Diffstat (limited to 'ext/standard/datetime.c')
-rw-r--r-- | ext/standard/datetime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/datetime.c b/ext/standard/datetime.c index 694668198d..eb025e5302 100644 --- a/ext/standard/datetime.c +++ b/ext/standard/datetime.c @@ -52,7 +52,7 @@ char *day_short_names[] = { }; #if !defined(HAVE_TM_ZONE) && !defined(_TIMEZONE) && !defined(HAVE_DECLARED_TIMEZONE) -#if defined(NETWARE) && defined(NEW_LIBC) +#ifdef NETWARE #define timezone _timezone /* timezone is called '_timezone' in new version of LibC */ #endif extern time_t timezone; |