chiark / gitweb /
[PATCH] klibc: update to version 0.196
[elogind.git] / klibc / klibc / sigprocmask.c
1 /*
2  * sigprocmask.c
3  */
4
5 #include <signal.h>
6 #include <sys/syscall.h>
7
8 #ifndef __NR_sigprocmask
9
10 int sigprocmask(int how, const sigset_t *set, sigset_t *oset)
11 {
12   return rt_sigprocmask(how, set, oset, sizeof(sigset_t));
13 }
14
15 #endif