From 9b92b36b830fcab65e8cb700ef26620d47d3879c Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Mon, 23 Jan 2006 21:25:45 +0000 Subject: make sigaction/raise/sigwait/siglongjmp/longjmp weak_alias, these are in libpthread as well --- libc/signal/sigwait.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'libc/signal/sigwait.c') diff --git a/libc/signal/sigwait.c b/libc/signal/sigwait.c index 76321b148..e309c3e8f 100644 --- a/libc/signal/sigwait.c +++ b/libc/signal/sigwait.c @@ -24,8 +24,7 @@ libc_hidden_proto(sigwaitinfo) -libc_hidden_proto(sigwait) -int sigwait (const sigset_t *set, int *sig) +int attribute_hidden __sigwait (const sigset_t *set, int *sig) { int ret = 1; if ((ret = sigwaitinfo(set, NULL)) != -1) { @@ -34,4 +33,6 @@ int sigwait (const sigset_t *set, int *sig) } return 1; } +libc_hidden_proto(sigwait) +weak_alias(__sigwait,sigwait) libc_hidden_def(sigwait) -- cgit v1.2.3