aboutsummaryrefslogtreecommitdiffstats
path: root/extras/mini-os/include/posix/time.h
diff options
context:
space:
mode:
Diffstat (limited to 'extras/mini-os/include/posix/time.h')
-rw-r--r--extras/mini-os/include/posix/time.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/extras/mini-os/include/posix/time.h b/extras/mini-os/include/posix/time.h
new file mode 100644
index 0000000000..4f457cb5ad
--- /dev/null
+++ b/extras/mini-os/include/posix/time.h
@@ -0,0 +1,10 @@
+#ifndef _POSIX_TIME_H
+#define _POSIX_TIME_H
+
+#include <sys/time.h>
+#define CLOCK_MONOTONIC 2
+#include_next <time.h>
+
+int nanosleep(const struct timespec *req, struct timespec *rem);
+
+#endif /* _POSIX_TIME_H */