summaryrefslogtreecommitdiff
path: root/lib/libc/sys/timer_create.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/sys/timer_create.c')
-rw-r--r--lib/libc/sys/timer_create.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/libc/sys/timer_create.c b/lib/libc/sys/timer_create.c
new file mode 100644
index 00000000000..43ca4681fc8
--- /dev/null
+++ b/lib/libc/sys/timer_create.c
@@ -0,0 +1,13 @@
+#include <signal.h>
+#include <time.h>
+#include <errno.h>
+
+int
+timer_create(clock_id, evp, timerid)
+ clockid_t clock_id;
+ struct sigevent *evp;
+ timer_t *timerid;
+{
+ errno = ENOSYS;
+ return -1;
+}