remove __STDC_LIMIT_MACROS and __STDC_CONSTANT_MACROS checks in stdint.h
[musl] / src / signal / sigpending.c
1 #include <signal.h>
2 #include "syscall.h"
3
4 int sigpending(sigset_t *set)
5 {
6         return syscall(SYS_rt_sigpending, set, _NSIG/8);
7 }