summaryrefslogtreecommitdiff
path: root/src/sys/types
diff options
context:
space:
mode:
Diffstat (limited to 'src/sys/types')
-rw-r--r--src/sys/types/clockid_t.c6
-rw-r--r--src/sys/types/timer_t.c6
2 files changed, 12 insertions, 0 deletions
diff --git a/src/sys/types/clockid_t.c b/src/sys/types/clockid_t.c
new file mode 100644
index 00000000..7b05b621
--- /dev/null
+++ b/src/sys/types/clockid_t.c
@@ -0,0 +1,6 @@
+#include <sys/types.h>
+typedef unsigned long int clockid_t;
+
+/*
+POSIX(199309)
+*/
diff --git a/src/sys/types/timer_t.c b/src/sys/types/timer_t.c
new file mode 100644
index 00000000..49ca4526
--- /dev/null
+++ b/src/sys/types/timer_t.c
@@ -0,0 +1,6 @@
+#include <sys/types.h>
+typedef unsigned long int timer_t;
+
+/*
+POSIX(199309)
+*/