From ee2b8cb382ab1ca0841301049789804a99261c3d Mon Sep 17 00:00:00 2001 From: Bill Joy Date: Wed, 9 Apr 1980 23:25:30 -0800 Subject: [PATCH] date and time created 80/04/09 16:25:30 by bill SCCS-vsn: sys/sys/timeb.h 3.1 --- usr/src/sys/sys/timeb.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 usr/src/sys/sys/timeb.h 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; +}; -- 2.20.1