summaryrefslogtreecommitdiff
path: root/include/mpw/sys/time.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/mpw/sys/time.h')
-rw-r--r--include/mpw/sys/time.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/mpw/sys/time.h b/include/mpw/sys/time.h
new file mode 100644
index 00000000000..f9e485232a2
--- /dev/null
+++ b/include/mpw/sys/time.h
@@ -0,0 +1,13 @@
+/* Imitation sys/time.h. */
+
+#ifndef __SYS_TIME_H__
+#define __SYS_TIME_H__
+
+#include <time.h>
+
+struct timeval {
+ long tv_sec;
+ long tv_usec;
+};
+
+#endif /* __SYS_TIME_H__ */