summaryrefslogtreecommitdiff
path: root/include/mpw/sys/time.h
diff options
context:
space:
mode:
authorYamaArashi <shadow962@live.com>2016-01-06 01:47:28 -0800
committerYamaArashi <shadow962@live.com>2016-01-06 01:47:28 -0800
commitbe8b04496302184c6e8f04d6179f9c3afc50aeb6 (patch)
tree726e2468c0c07add773c0dbd86ab6386844259ae /include/mpw/sys/time.h
initial commit
Diffstat (limited to 'include/mpw/sys/time.h')
-rwxr-xr-xinclude/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 100755
index 0000000..f9e4852
--- /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__ */