diff options
Diffstat (limited to 'lib/libc_r/uthread/uthread_sigpending.c')
-rw-r--r-- | lib/libc_r/uthread/uthread_sigpending.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libc_r/uthread/uthread_sigpending.c b/lib/libc_r/uthread/uthread_sigpending.c index 2d61e21..feb4300 100644 --- a/lib/libc_r/uthread/uthread_sigpending.c +++ b/lib/libc_r/uthread/uthread_sigpending.c @@ -38,7 +38,7 @@ #include "pthread_private.h" int -sigpending(sigset_t * set) +_libc_sigpending(sigset_t * set) { int ret = 0; @@ -53,4 +53,6 @@ sigpending(sigset_t * set) /* Return the completion status: */ return (ret); } + +__weak_reference(_libc_sigpending, sigpending); #endif |