diff options
Diffstat (limited to 'lib/libc_r/uthread/uthread_pselect.c')
-rw-r--r-- | lib/libc_r/uthread/uthread_pselect.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libc_r/uthread/uthread_pselect.c b/lib/libc_r/uthread/uthread_pselect.c index 5a3d378..9848863 100644 --- a/lib/libc_r/uthread/uthread_pselect.c +++ b/lib/libc_r/uthread/uthread_pselect.c @@ -40,8 +40,10 @@ __FBSDID("$FreeBSD$"); extern int __pselect(int count, fd_set *rfds, fd_set *wfds, fd_set *efds, const struct timespec *timo, const sigset_t *mask); +__weak_reference(_pselect, pselect); + int -pselect(int count, fd_set *rfds, fd_set *wfds, fd_set *efds, +_pselect(int count, fd_set *rfds, fd_set *wfds, fd_set *efds, const struct timespec *timo, const sigset_t *mask) { int ret; |