diff options
Diffstat (limited to 'src/sys/timeb/struct_timeb.h')
-rw-r--r-- | src/sys/timeb/struct_timeb.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/sys/timeb/struct_timeb.h b/src/sys/timeb/struct_timeb.h new file mode 100644 index 00000000..90ba63c3 --- /dev/null +++ b/src/sys/timeb/struct_timeb.h @@ -0,0 +1,12 @@ +#include <sys/timeb.h> + +struct timeb { + time_t time; + unsigned short millitm; + short timezone; + short dstflag; +}; + +/* +XOPEN(400,700) +*/ |