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