summaryrefslogtreecommitdiff
path: root/src/poll/poll.c
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2019-02-09 13:24:16 -0500
committerJakob Kaivo <jkk@ung.org>2019-02-09 13:24:16 -0500
commit7d080ea59666baf2d03149344f455ccc35d455c3 (patch)
tree62c819965446a3787d96fe0b1da6417f78636e3f /src/poll/poll.c
parentba3c4cc6f3d7e844ed022f2efff3c692ed412305 (diff)
merge XOPEN identifiers
Diffstat (limited to 'src/poll/poll.c')
-rw-r--r--src/poll/poll.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/poll/poll.c b/src/poll/poll.c
new file mode 100644
index 00000000..7813cf37
--- /dev/null
+++ b/src/poll/poll.c
@@ -0,0 +1,11 @@
+#include <poll.h>
+
+int poll(struct pollfd fds[], nfds_t nfds, int timeout)
+{
+ return 0;
+}
+
+/*
+XOPEN(400)
+POSIX(200809)
+*/