about summary refs log tree commit diff
path: root/time/sys/time.h
diff options
context:
space:
mode:
Diffstat (limited to 'time/sys/time.h')
-rw-r--r--time/sys/time.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/time/sys/time.h b/time/sys/time.h
index 5dbc7fc627..2d5984204f 100644
--- a/time/sys/time.h
+++ b/time/sys/time.h
@@ -51,8 +51,8 @@ __BEGIN_DECLS
    This is obsolete and should never be used.  */
 struct timezone
   {
-    int tz_minuteswest;		/* Minutes west of GMT.  */
-    int tz_dsttime;		/* Nonzero if DST is ever in effect.  */
+    /* Formerly: int tz_minuteswest; int tz_dsttime;  */
+    char __preserve_historic_size [2 * sizeof (int)];
   };
 
 typedef struct timezone *__restrict __timezone_ptr_t;