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