diff options
author | phk <phk@FreeBSD.org> | 2001-03-31 07:24:35 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2001-03-31 07:24:35 +0000 |
commit | e98b608bfe28fae6a6fbb6fa2626e8c0d37be44f (patch) | |
tree | af8b9da257fe01e8a566cd2a96af2f7ab55be59d /include | |
parent | 34100a9517cc672e2dcfc53509547464d595f1ca (diff) | |
download | FreeBSD-src-e98b608bfe28fae6a6fbb6fa2626e8c0d37be44f.zip FreeBSD-src-e98b608bfe28fae6a6fbb6fa2626e8c0d37be44f.tar.gz |
It's not CUT (the french would accept that back in 1879) and TUC wasn't
palatable to the rest of the world. UTC was the compromise.
PR: 26238
Submitted by: Ying-Chieh Liao <ijliao@terry.dragon2.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/time.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/time.h b/include/time.h index a9baa50..1e38cb2 100644 --- a/include/time.h +++ b/include/time.h @@ -38,6 +38,10 @@ * @(#)time.h 8.3 (Berkeley) 1/21/94 */ +/* + * $FreeBSD$ + */ + #ifndef _TIME_H_ #define _TIME_H_ @@ -110,7 +114,7 @@ struct tm { int tm_wday; /* days since Sunday [0-6] */ int tm_yday; /* days since January 1 [0-365] */ int tm_isdst; /* Daylight Savings Time flag */ - long tm_gmtoff; /* offset from CUT in seconds */ + long tm_gmtoff; /* offset from UTC in seconds */ char *tm_zone; /* timezone abbreviation */ }; |