Index: NSTimeZone.m
===================================================================
RCS file: /cvsroot/gnustep/gnustep/core/base/Source/NSTimeZone.m,v
retrieving revision 1.57
diff -u -d -b -w -r1.57 NSTimeZone.m
--- NSTimeZone.m	4 Sep 2003 03:26:43 -0000	1.57
+++ NSTimeZone.m	19 Sep 2003 18:17:35 -0000
@@ -1130,10 +1130,14 @@
 	  /*
 	   * Try to get timezone from tzset and tzname
 	   */
-	  extern char *tzname[2];
+#ifdef _WIN32
+	  char **timeZoneName = _tzname;
+#else
+	  char **timeZoneName = tzname;
+#endif
 	  tzset();
-	  if (tzname[0] != NULL && *tzname[0] != '\0')
-	    localZoneString = [NSString stringWithCString: tzname[0]];
+	  if (timeZoneName[0] != NULL && *timeZoneName[0] != '\0')
+	    localZoneString = [NSString stringWithCString: timeZoneName[0]];
 	}
 #else
       if (localZoneString == nil)
