summaryrefslogtreecommitdiff
path: root/include/time.h
diff options
context:
space:
mode:
authormycroft <mycroft@NetBSD.org>1998-07-26 12:58:15 +0000
committermycroft <mycroft@NetBSD.org>1998-07-26 12:58:15 +0000
commitbb96d7f5ba449320ff8a3c97e3702bafa2e4eccb (patch)
treeff7db4b5960d08ec09242a4cfc7c4c143c1bae55 /include/time.h
parent79788fe0d28c91661226c31af609ca2caae9649f (diff)
const poisoning.
Diffstat (limited to 'include/time.h')
-rw-r--r--include/time.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/time.h b/include/time.h
index 07ad912c62c..ee715eb7236 100644
--- a/include/time.h
+++ b/include/time.h
@@ -1,4 +1,4 @@
-/* $NetBSD: time.h,v 1.16 1998/07/26 12:55:17 mycroft Exp $ */
+/* $NetBSD: time.h,v 1.17 1998/07/26 12:58:15 mycroft Exp $ */
/*
* Copyright (c) 1989, 1993
@@ -87,7 +87,7 @@ struct tm {
int tm_yday; /* days since January 1 [0-365] */
int tm_isdst; /* Daylight Savings Time flag */
long tm_gmtoff; /* offset from CUT in seconds */
- char *tm_zone; /* timezone abbreviation */
+ const char *tm_zone; /* timezone abbreviation */
};
#include <machine/limits.h> /* Include file containing CLK_TCK. */