blob: 574f850d53265cc2a57f14e00412cea51f866372 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#if 0
#include <signal.h>
int sigtimedwait(const sigset_t * restrict set, siginfo_t * restrict info, const struct timespec * restrict timeout)
{
return 0;
}
/*
POSIX(199309)
*/
#endif
|