diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-04-25 02:53:25 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-04-25 02:53:25 +0000 |
commit | e2465f50f6c5b07bc73c22766f9c58b92c0e8a1e (patch) | |
tree | 35df109fef38decc7c30622ad55f107fb92edd20 /util.c | |
parent | 58e775659dec144880f7212793771f18cf88682b (diff) | |
download | perl-e2465f50f6c5b07bc73c22766f9c58b92c0e8a1e.tar.gz |
The tzname[] bit is not needed by util.c -- and causes
heartburn in VMS (and it missing was probably the cause of
the Mac OS X trouble). Ouch.
p4raw-id: //depot/perl@9830
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 10 |
1 files changed, 0 insertions, 10 deletions
@@ -4126,16 +4126,6 @@ Perl_ebcdic_control(pTHX_ int ch) } #endif -#ifdef HAS_TZNAME -# if !defined(WIN32) && !defined(__CYGWIN__) -extern char *tzname[]; -# endif -#else -#if !defined(WIN32) || (defined(__MINGW32__) && !defined(tzname)) -char *tzname[] = { "" , "" }; -#endif -#endif - /* XXX struct tm on some systems (SunOS4/BSD) contains extra (non POSIX) * fields for which we don't have Configure support yet: * char *tm_zone; -- abbreviation of timezone name |