1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 14:00:21 +02:00

On M$-Windows tzname[]' is known to be _tzname[]'.

This commit is contained in:
Marius Vollmer 2001-11-02 00:17:10 +00:00
parent ed618cc9c1
commit 79dcdf5188

View file

@ -90,6 +90,9 @@
#ifndef tzname /* For SGI. */
extern char *tzname[]; /* RS6000 and others reject char **tzname. */
#endif
#if defined (__MINGW32__)
# define tzname _tzname
#endif
#ifdef MISSING_STRPTIME_DECL
extern char *strptime ();