diff options
Diffstat (limited to 'libc/sysdeps/linux/common')
-rw-r--r-- | libc/sysdeps/linux/common/pause.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/libc/sysdeps/linux/common/pause.c b/libc/sysdeps/linux/common/pause.c index 0587a7b66..a017ef611 100644 --- a/libc/sysdeps/linux/common/pause.c +++ b/libc/sysdeps/linux/common/pause.c @@ -7,22 +7,20 @@ * GNU Library General Public License (LGPL) version 2 or later. */ +#define __sigpause __sigpause_internal +#define sigblock __sigblock + #include "syscalls.h" #include <unistd.h> #ifdef __NR_pause - #define __NR___libc_pause __NR_pause _syscall0(int, __libc_pause); -weak_alias(__libc_pause, pause); - #else - #include <signal.h> int __libc_pause(void) { return (__sigpause(sigblock(0), 0)); } -weak_alias(__libc_pause, pause); - #endif +weak_alias(__libc_pause, pause) |