blob: 1a6c03c359c75680004d7d8c1137b54a353364c2 [file] [log] [blame]
#include <sys/signalfd.h>
#include "syscall.h"
int signalfd(int fd, const sigset_t *sigs, int flags)
{
return syscall(SYS_signalfd, fd, sigs, __SYSCALL_SSLEN);
}