aboutsummaryrefslogtreecommitdiff
path: root/lib/sys/time.h
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2022-12-14 18:26:49 +0100
committerNathan Reiner <nathan@nathanreiner.xyz>2022-12-14 18:26:49 +0100
commitd179f1846f9372920ef02f08cfb4d3abe99b383f (patch)
tree4b6ddc71566be95a1ce520ef9d957f4cac1af6c9 /lib/sys/time.h
first commit
Diffstat (limited to 'lib/sys/time.h')
-rw-r--r--lib/sys/time.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/sys/time.h b/lib/sys/time.h
new file mode 100644
index 0000000..920ee5c
--- /dev/null
+++ b/lib/sys/time.h
@@ -0,0 +1,11 @@
+#ifndef TIME_H
+#define TIME_H
+
+#include "sizes.h"
+
+struct timespec {
+ u64 tv_sec;
+ long tv_nsec;
+};
+
+#endif