chiark / gitweb /
819ffd4fe82efbc812d14d300fcdb95b2b4d54a5
[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