chiark / gitweb /
885bc6a4a416ab275a8feb14e3b1164d11900356
[elogind.git] / klibc / klibc / sigaction.c
1 /*
2  * sigaction.c
3  */
4
5 #include <signal.h>
6 #include <sys/syscall.h>
7
8 #if !defined(__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