sigsuspend.c 132 B

12345678910111213
  1. #include <signal.h>
  2. #include <errno.h>
  3. /*
  4. * BUG: doesn't work
  5. */
  6. int
  7. sigsuspend(sigset_t *set)
  8. {
  9. errno = EINVAL;
  10. return -1;
  11. }