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