From 856e40b973daf66ea3aaae60550ad63823c60b5d Mon Sep 17 00:00:00 2001 From: Arthur David Olson Date: Wed, 19 Feb 1986 09:59:52 -0500 Subject: [PATCH] minor reworking SCCS-file: tzfile.h SCCS-SID: 1.8 --- tzfile.h | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/tzfile.h b/tzfile.h index 581fe71..af0e594 100644 --- a/tzfile.h +++ b/tzfile.h @@ -24,16 +24,13 @@ #define TZ_ABBR_LEN 7 /* Maximum Time Zone abbr. length */ #endif -struct dsinfo { - long ds_gmtoff; /* Offset from GMT in seconds */ - char ds_abbr[TZ_ABBR_LEN+1]; /* Time Zone abbreviation */ - char ds_isdst; /* Used to fill tm_isdst */ -}; - struct tzinfo { int tz_timecnt; /* Number of entries used */ long tz_times[TZ_MAX_TIMES]; /* Saving Time transition times */ char tz_types[TZ_MAX_TIMES]; /* Saving Time types for the above */ - struct dsinfo tz_dsinfo[TZ_MAX_TYPES]; - /* See above */ + struct dsinfo { + long ds_gmtoff; /* Offset from GMT in seconds */ + char ds_abbr[TZ_ABBR_LEN+1]; /* Time Zone abbreviation */ + char ds_isdst; /* Used to fill tm_isdst */ + } tz_dsinfo[TZ_MAX_TYPES]; };