diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-30 17:32:30 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-30 17:32:30 +0000 |
commit | 643a91475b50cd5de7ac7a16b66eaccab3c30990 (patch) | |
tree | bea533dd998169f4236938543d8d59627565aafc /libc/sysdeps | |
parent | a2f6317acda69a8772b4db50196dfda186a4e6f0 (diff) |
change __rt_sigprocmask to static inline
Diffstat (limited to 'libc/sysdeps')
-rw-r--r-- | libc/sysdeps/linux/common/sigprocmask.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/common/sigprocmask.c b/libc/sysdeps/linux/common/sigprocmask.c index 70ff36606..c15ba2485 100644 --- a/libc/sysdeps/linux/common/sigprocmask.c +++ b/libc/sysdeps/linux/common/sigprocmask.c @@ -15,6 +15,7 @@ #ifdef __NR_rt_sigprocmask #define __NR___rt_sigprocmask __NR_rt_sigprocmask +static inline _syscall4(int, __rt_sigprocmask, int, how, const sigset_t *, set, sigset_t *, oldset, size_t, size); |