aboutsummaryrefslogtreecommitdiff
path: root/src/linux/ppoll.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/linux/ppoll.c')
-rw-r--r--src/linux/ppoll.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/linux/ppoll.c b/src/linux/ppoll.c
index e614600a..83c56b83 100644
--- a/src/linux/ppoll.c
+++ b/src/linux/ppoll.c
@@ -24,3 +24,11 @@ int ppoll(struct pollfd *fds, nfds_t n, const struct timespec *to, const sigset_
return syscall_cp(SYS_ppoll, fds, n,
to ? ((long[]){s, ns}) : 0, mask, _NSIG/8);
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif