]> git.proxmox.com Git - wasi-libc.git/blob - libc-top-half/musl/src/signal/sigwaitinfo.c
WASI libc prototype implementation.
[wasi-libc.git] / libc-top-half / musl / src / signal / sigwaitinfo.c
1 #include <signal.h>
2
3 int sigwaitinfo(const sigset_t *restrict mask, siginfo_t *restrict si)
4 {
5 return sigtimedwait(mask, si, 0);
6 }