1#include <signal.h>
2
3int sigwaitinfo(const sigset_t *restrict mask, siginfo_t *restrict si)
4{
5	return sigtimedwait(mask, si, 0);
6}
7