summaryrefslogtreecommitdiff
path: root/src/sys/types
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2019-02-20 12:00:12 -0500
committerJakob Kaivo <jkk@ung.org>2019-02-20 12:00:12 -0500
commit52b8c93b7180eac72721d59315aae2b592e7b3a1 (patch)
treed304c2e253c56ca39df04e5d346309f08f67c445 /src/sys/types
parent49836ed4fa13e431fdbb52e418499853df8693c6 (diff)
add symbols from POSIX.1b-1993
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)
+*/