diff options
-rw-r--r-- | libguile/stime.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libguile/stime.c b/libguile/stime.c index 4d310071f..a8ba26b8b 100644 --- a/libguile/stime.c +++ b/libguile/stime.c @@ -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 (); |