summaryrefslogtreecommitdiff
path: root/src/signal/sigtimedwait.c
blob: 74443089b7369e97e393f37890965a3189331926 (plain)
1
2
3
4
5
6
7
8
9
10
#include <signal.h>

int sigtimedwait(const sigset_t * restrict set, siginfo_t * restrict info, const struct timespec * restrict timeout)
{
	return 0;
}

/*
POSIX(199309)
*/