musl/src/signal/sigwaitinfo.c
Rich Felker a7dbcf5c8c use 0 instead of NULL for null pointer constants
and thereby remove otherwise-unnecessary inclusion of stddef.h
2013-12-13 02:20:07 -05:00

7 lines
131 B
C

#include <signal.h>
int sigwaitinfo(const sigset_t *restrict mask, siginfo_t *restrict si)
{
return sigtimedwait(mask, si, 0);
}