aboutsummaryrefslogtreecommitdiff
path: root/src/signal/sigwaitinfo.c
blob: d43f39b151896e89a542e6091574eb598159c1ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <signal.h>

int sigwaitinfo(const sigset_t *restrict mask, siginfo_t *restrict si)
{
	return sigtimedwait(mask, si, 0);
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif