diff options
Diffstat (limited to 'sysdeps/htl/pt-mutex-timedlock.c')
-rw-r--r-- | sysdeps/htl/pt-mutex-timedlock.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/htl/pt-mutex-timedlock.c b/sysdeps/htl/pt-mutex-timedlock.c index d0ebb2975e..0e50f38ef2 100644 --- a/sysdeps/htl/pt-mutex-timedlock.c +++ b/sysdeps/htl/pt-mutex-timedlock.c @@ -189,8 +189,9 @@ __pthread_mutex_timedlock_internal (struct __pthread_mutex *mutex, } int -pthread_mutex_timedlock (struct __pthread_mutex *mutex, +__pthread_mutex_timedlock (struct __pthread_mutex *mutex, const struct timespec *abstime) { return __pthread_mutex_timedlock_internal (mutex, abstime); } +strong_alias (__pthread_mutex_timedlock, pthread_mutex_timedlock) |