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