123456789101112131415161718192021222324252627282930313233343536373839 |
- #include <signal.h>
- #if 0
- #define __need_NULL
- #include <stddef.h>
- #include <errno.h>
- #endif
- int sigemptyset (sigset_t *set)
- {
- #if 0
- if (set == NULL)
- {
- __set_errno (EINVAL);
- return -1;
- }
- #endif
- __sigemptyset (set);
- return 0;
- }
|