summaryrefslogtreecommitdiffstats
path: root/include/mpw/sys/time.h
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>1999-05-03 07:29:06 +0000
committerRichard Henderson <rth@redhat.com>1999-05-03 07:29:06 +0000
commita3acbf46947e52ff596461a4cf6f539884c9dbbd (patch)
treeef93cefb82fdb4d8f2639e166e277474d9b2acab /include/mpw/sys/time.h
downloadcygnal-a3acbf46947e52ff596461a4cf6f539884c9dbbd.tar.gz
cygnal-a3acbf46947e52ff596461a4cf6f539884c9dbbd.tar.bz2
cygnal-a3acbf46947e52ff596461a4cf6f539884c9dbbd.zip
19990502 sourceware importbinu_ss_19990502
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 000000000..f9e485232
--- /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__ */