xref: /original-bsd/sys/sys/timeb.h (revision 333da485)
1 /*-
2  * Copyright (c) 1991, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  * (c) UNIX System Laboratories, Inc.
5  * All or some portions of this file are derived from material licensed
6  * to the University of California by American Telephone and Telegraph
7  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8  * the permission of UNIX System Laboratories, Inc.
9  *
10  * %sccs.include.redist.c%
11  *
12  *	@(#)timeb.h	8.2 (Berkeley) 01/21/94
13  */
14 
15 /* The ftime(2) system call structure -- deprecated. */
16 struct timeb {
17 	time_t	time;			/* seconds since the Epoch */
18 	unsigned short millitm;		/* + milliseconds since the Epoch */
19 	short	timezone;		/* minutes west of CUT */
20 	short	dstflag;		/* DST == non-zero */
21 };
22