Trailing-Edge
-
PDP-10 Archives
-
SRI_NIC_PERM_FS_1_19910112
-
kccdist/include/sys/timeb.h
There are 7 other files named timeb.h in the archive. Click here to see a list.
/*
** Structure filled out by ftime() system call.
** Changed from BSD description, which used time_t the wrong way
** and would otherwise be inefficient. Use gettimeofday() instead.
*/
struct timeb
{
long 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 */
};