diff options
Diffstat (limited to 'lib/libc_r/uthread/uthread_rwlockattr.c')
-rw-r--r-- | lib/libc_r/uthread/uthread_rwlockattr.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc_r/uthread/uthread_rwlockattr.c b/lib/libc_r/uthread/uthread_rwlockattr.c index 7dcaaeb..bc1b9ee 100644 --- a/lib/libc_r/uthread/uthread_rwlockattr.c +++ b/lib/libc_r/uthread/uthread_rwlockattr.c @@ -32,10 +32,10 @@ #include <pthread.h> #include "pthread_private.h" -#pragma weak pthread_rwlockattr_destroy=_pthread_rwlockattr_destroy -#pragma weak pthread_rwlockattr_getpshared=_pthread_rwlockattr_getpshared -#pragma weak pthread_rwlockattr_init=_pthread_rwlockattr_init -#pragma weak pthread_rwlockattr_setpshared=_pthread_rwlockattr_setpshared +__weak_reference(_pthread_rwlockattr_destroy, pthread_rwlockattr_destroy); +__weak_reference(_pthread_rwlockattr_getpshared, pthread_rwlockattr_getpshared); +__weak_reference(_pthread_rwlockattr_init, pthread_rwlockattr_init); +__weak_reference(_pthread_rwlockattr_setpshared, pthread_rwlockattr_setpshared); int _pthread_rwlockattr_destroy(pthread_rwlockattr_t *rwlockattr) |