sigpending.c 118 B

1234567891011
  1. #include <signal.h>
  2. /*
  3. * BUG: don't keep track of these
  4. */
  5. int
  6. sigpending(sigset_t *set)
  7. {
  8. *set = 0;
  9. return 0;
  10. }