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