diff options
-rw-r--r-- | nptl/pthread_rwlock_destroy.c | 2 | ||||
-rw-r--r-- | nptl/pthread_rwlock_init.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/nptl/pthread_rwlock_destroy.c b/nptl/pthread_rwlock_destroy.c index 7faf0c3..bc956e4 100644 --- a/nptl/pthread_rwlock_destroy.c +++ b/nptl/pthread_rwlock_destroy.c @@ -29,4 +29,4 @@ __pthread_rwlock_destroy (rwlock) /* Nothing to be done. For now. */ return 0; } -strong_alias (__pthread_rwlock_destroy, pthread_rwlock_destroy) +weak_alias (__pthread_rwlock_destroy, pthread_rwlock_destroy) diff --git a/nptl/pthread_rwlock_init.c b/nptl/pthread_rwlock_init.c index 23ee6c6..471a994 100644 --- a/nptl/pthread_rwlock_init.c +++ b/nptl/pthread_rwlock_init.c @@ -70,4 +70,4 @@ __pthread_rwlock_init (rwlock, attr) return 0; } -strong_alias (__pthread_rwlock_init, pthread_rwlock_init) +weak_alias (__pthread_rwlock_init, pthread_rwlock_init) |