diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-06-02 17:51:32 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-06-02 17:51:32 +0000 |
commit | 0ef5ac4b9c07dccab409b5b2de7fba28116efc40 (patch) | |
tree | 2cf29bbf19854cb2fd2337c10b7451e3d4085df8 /libpthread/linuxthreads/oldsemaphore.c | |
parent | fbda8b46871166d07b2cdb15445fee8e4ee2a2bf (diff) |
Patch from Peter S. Mazinger to fix some leftover problems
from converting "PIC" to "__PIC__"
Diffstat (limited to 'libpthread/linuxthreads/oldsemaphore.c')
-rw-r--r-- | libpthread/linuxthreads/oldsemaphore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpthread/linuxthreads/oldsemaphore.c b/libpthread/linuxthreads/oldsemaphore.c index 225af508f..3a3b3d186 100644 --- a/libpthread/linuxthreads/oldsemaphore.c +++ b/libpthread/linuxthreads/oldsemaphore.c @@ -224,7 +224,7 @@ static void sem_restart_list(pthread_descr waiting) } } -#if defined __PIC__ && DO_VERSIONING +#if defined __PIC__ && defined DO_VERSIONING symbol_version (__old_sem_init, sem_init, GLIBC_2.0); symbol_version (__old_sem_wait, sem_wait, GLIBC_2.0); symbol_version (__old_sem_trywait, sem_trywait, GLIBC_2.0); |