diff options
Diffstat (limited to 'src/sys/time/struct_timeval.h')
-rw-r--r-- | src/sys/time/struct_timeval.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/sys/time/struct_timeval.h b/src/sys/time/struct_timeval.h new file mode 100644 index 00000000..00d1989b --- /dev/null +++ b/src/sys/time/struct_timeval.h @@ -0,0 +1,10 @@ +#include <sys/time.h> + +struct timeval { + time_t tv_sec; + suseconds_t tv_usec; +}; + +/* +XOPEN(400) +*/ |