diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-11-20 19:33:08 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-11-20 19:33:08 +0000 |
commit | 6dd7cf3090e2042cd7fab3e8925cc75b640b2b3f (patch) | |
tree | b0e27dfc6a430f835d175808f9685d0fc81245a7 /libc/misc/time/strftime.c | |
parent | 61349a4cef1ded7f65ce7a5c786797368db3d9dd (diff) |
A few symbols needed for testing
Diffstat (limited to 'libc/misc/time/strftime.c')
-rw-r--r-- | libc/misc/time/strftime.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libc/misc/time/strftime.c b/libc/misc/time/strftime.c index 8529446eb..4dd3d7dd0 100644 --- a/libc/misc/time/strftime.c +++ b/libc/misc/time/strftime.c @@ -145,10 +145,8 @@ size_t strftime( char *s , size_t maxsize , const char *format , register const #if HAVE_TM_ZONE zone = (const char *) tp->tm_zone; #endif -#if HAVE_TZNAME if (!(zone && *zone) && tp->tm_isdst >= 0) zone = tzname[tp->tm_isdst]; -#endif if (!(zone && *zone)) zone = "???"; |