summaryrefslogtreecommitdiff
path: root/src/sys/time/setitimer.c
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2019-02-09 16:20:41 -0500
committerJakob Kaivo <jkk@ung.org>2019-02-09 16:20:41 -0500
commita40472f280a03cd762f3e68d46438da4ad24b4ca (patch)
tree6c58b22ed2a110b7014082619f8ffaf9dc061273 /src/sys/time/setitimer.c
parent0c3a28852bcfcd98ffed857bea70ddcc374d0816 (diff)
merge XOPEN identifiers
Diffstat (limited to 'src/sys/time/setitimer.c')
-rw-r--r--src/sys/time/setitimer.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/sys/time/setitimer.c b/src/sys/time/setitimer.c
new file mode 100644
index 00000000..d3f7dc3a
--- /dev/null
+++ b/src/sys/time/setitimer.c
@@ -0,0 +1,10 @@
+#include <sys/time.h>
+
+int setitimer(int which, const struct itimerval *restrict value, struct itimerval *restrict ovalue)
+{
+ return which;
+}
+
+/*
+XOPEN(400)
+*/