[project @ 1996-07-19 18:36:04 by partain]
[ghc-hetmet.git] / ghc / includes / timezone.h
index e0aa2f0..bedafdf 100644 (file)
 #endif
 
 #if HAVE_TM_ZONE
-#define ZONE(x)            (((struct tm *)x)->tm_zone)
-#define GMTOFF(x)   (((struct tm *)x)->tm_gmtoff)
+#define ZONE(x)                 (((struct tm *)x)->tm_zone)
+#define SETZONE(x,z)     (((struct tm *)x)->tm_zone = z)
+#define GMTOFF(x)        (((struct tm *)x)->tm_gmtoff)
 #else 
 #if HAVE_TZNAME
 extern time_t timezone, altzone;
-extern char *tmzone[2];
-#define ZONE(x)            (((struct tm *)x)->tm_isdst ? tmzone[1] : tmzone[0])
-#define GMTOFF(x)   (((struct tm *)x)->tm_isdst ? altzone : timezone)
+extern char *tzname[2];
+#define ZONE(x)                 (((struct tm *)x)->tm_isdst ? tzname[1] : tzname[0])
+#define SETZONE(x,z)
+#define GMTOFF(x)       (((struct tm *)x)->tm_isdst ? altzone : timezone)
 #endif
 #endif
 
-#endif
\ No newline at end of file
+#endif