From: Bill Joy Date: Thu, 10 Apr 1980 07:25:30 +0000 (-0800) Subject: date and time created 80/04/09 16:25:30 by bill X-Git-Tag: BSD-4^3~1231 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/ee2b8cb382ab1ca0841301049789804a99261c3d date and time created 80/04/09 16:25:30 by bill SCCS-vsn: sys/sys/timeb.h 3.1 --- diff --git a/usr/src/sys/sys/timeb.h b/usr/src/sys/sys/timeb.h new file mode 100644 index 0000000000..acd28a58f4 --- /dev/null +++ b/usr/src/sys/sys/timeb.h @@ -0,0 +1,12 @@ +/* timeb.h 3.1 %H% */ + +/* + * Structure returned by ftime system call + */ +struct timeb +{ + time_t time; + unsigned short millitm; + short timezone; + short dstflag; +};