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