summaryrefslogtreecommitdiff
path: root/time/sys/timeb.h
diff options
context:
space:
mode:
Diffstat (limited to 'time/sys/timeb.h')
-rw-r--r--time/sys/timeb.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/time/sys/timeb.h b/time/sys/timeb.h
index 6333e8074d..11f47e9d6b 100644
--- a/time/sys/timeb.h
+++ b/time/sys/timeb.h
@@ -30,8 +30,9 @@ struct timeb
{
time_t time; /* Seconds since epoch, as from `time'. */
unsigned short int millitm; /* Additional milliseconds. */
- short int timezone; /* Minutes west of GMT. */
- short int dstflag; /* Nonzero if Daylight Savings Time used. */
+
+ /* Formerly: short int timezone; short int dstflag; */
+ char __preserve_historic_size [2 * sizeof (short int)];
};
/* Fill in TIMEBUF with information about the current time. */