xref: /plan9-contrib/sys/src/ape/lib/ap/plan9/sigsuspend.c (revision 781103c4074deb8af160e8a0da2742ba6b29dc2b)
1 #include <signal.h>
2 #include <errno.h>
3 
4 /*
5  * BUG: doesn't work
6  */
7 
8 int
sigsuspend(sigset_t *)9 sigsuspend(sigset_t *)
10 {
11 	errno = EINVAL;
12 	return -1;
13 }
14