chiark / gitweb /
[PATCH] Dialout group fix for capi devices in the gentoo rules file
[elogind.git] / klibc / klibc / sigaction.c
1 /*
2  * sigaction.c
3  */
4
5 #include <signal.h>
6 #include <sys/syscall.h>
7
8 #ifndef __NR_sigaction
9
10 int sigaction(int sig, const struct sigaction *act, struct sigaction *oact)
11 {
12   return rt_sigaction(sig, act, oact, sizeof(sigset_t));
13 }
14
15 #endif