Google
 

Trailing-Edge - PDP-10 Archives - SRI_NIC_PERM_FS_1_19910112 - c/include/sys/timeb.h
There are 7 other files named timeb.h in the archive. Click here to see a list.
/* <SYS/TIMEB.H> - definitions for ftime(2)
**
**	(c) Copyright Ken Harrenstien 1989
**
**	Structure filled out by ftime() V7 system call.
**	This is considered obsolete by BSD, which uses gettimeofday().
**	Note that <sys/types.h> must have been included.
*/

#ifndef _SYS_TIMEB_INCLUDED
#define _SYS_TIMEB_INCLUDED

struct timeb
{
	time_t time;		/* Time since epoch (1/1/70) in seconds */
	int millitm;		/* ms since above time (up to 1000) */
	int timezone;		/* local timezone in minutes west of GMT */
	int dstflag;		/* If set, DST applies locally */
};

#endif /* ifndef _SYS_TIMEB_INCLUDED */