summaryrefslogtreecommitdiffstats
path: root/libc-top-half/musl/src/signal/sigwaitinfo.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc-top-half/musl/src/signal/sigwaitinfo.c')
-rw-r--r--libc-top-half/musl/src/signal/sigwaitinfo.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/signal/sigwaitinfo.c b/libc-top-half/musl/src/signal/sigwaitinfo.c
new file mode 100644
index 0000000..bb51f8b
--- /dev/null
+++ b/libc-top-half/musl/src/signal/sigwaitinfo.c
@@ -0,0 +1,6 @@
+#include <signal.h>
+
+int sigwaitinfo(const sigset_t *restrict mask, siginfo_t *restrict si)
+{
+ return sigtimedwait(mask, si, 0);
+}