summaryrefslogtreecommitdiff
path: root/include/time.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/time.h')
-rw-r--r--include/time.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/time.h b/include/time.h
new file mode 100644
index 0000000..732d33f
--- /dev/null
+++ b/include/time.h
@@ -0,0 +1,15 @@
+#ifndef _TIME_H
+#define _TIME_H
+
+#include <stdint.h>
+
+#ifndef _TIME_T
+#define _TIME_T
+typedef int32_t time_t;
+#endif
+
+time_t time(void);
+
+void sleep(time_t);
+
+#endif