fix (hopefully) all hard-coded 8's for kernel sigset_t size
[musl] / src / linux / signalfd.c
1 #include <sys/signalfd.h>
2 #include "syscall.h"
3
4 int signalfd(int fd, const sigset_t *sigs, int flags)
5 {
6         return syscall(SYS_signalfd, fd, sigs, __SYSCALL_SSLEN);
7 }