BSD 4_1_snap development
[unix-history] / sys / h / timeb.h
CommitLineData
6bafdb92
C
1/* timeb.h 4.2 81/02/19 */
2
3/*
4 * Structure returned by ftime system call
5 */
6struct timeb
7{
8 time_t time;
9 unsigned short millitm;
10 short timezone;
11 short dstflag;
12};