diff options
Diffstat (limited to 'nptl/forward.c')
-rw-r--r-- | nptl/forward.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/forward.c b/nptl/forward.c index 29f291d555..491e0caed8 100644 --- a/nptl/forward.c +++ b/nptl/forward.c @@ -139,7 +139,7 @@ FORWARD (pthread_mutex_lock, (pthread_mutex_t *mutex), (mutex), 0); FORWARD (pthread_mutex_unlock, (pthread_mutex_t *mutex), (mutex), 0); -FORWARD (pthread_self, (void), (), 0); +FORWARD3 (pthread_self, pthread_t, (void), (), return 0, GLIBC_2_0); FORWARD (pthread_setcancelstate, (int state, int *oldstate), (state, oldstate), |