diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-05-11 23:53:20 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-05-11 23:53:20 +0000 |
commit | 8f14fbdfe239485f1f9267be8cad07a7ee7d6b29 (patch) | |
tree | 29dd17b1b3e76343b9818ca0f19a44fece5a5044 /libpthread/nptl/sem_init.c | |
parent | 8ba0998b77685cabdeb878c57de3af99965ef62a (diff) |
More glibc backward compatibility cruft. Oh the horror!
Diffstat (limited to 'libpthread/nptl/sem_init.c')
-rw-r--r-- | libpthread/nptl/sem_init.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libpthread/nptl/sem_init.c b/libpthread/nptl/sem_init.c index 8709911ac..6f371589a 100644 --- a/libpthread/nptl/sem_init.c +++ b/libpthread/nptl/sem_init.c @@ -20,7 +20,6 @@ #include <errno.h> #include <semaphore.h> #include <lowlevellock.h> -#include <shlib-compat.h> #include "semaphoreP.h" @@ -49,7 +48,3 @@ __new_sem_init (sem, pshared, value) return 0; } versioned_symbol (libpthread, __new_sem_init, sem_init, GLIBC_2_1); -#if SHLIB_COMPAT(libpthread, GLIBC_2_0, GLIBC_2_1) -strong_alias (__new_sem_init, __old_sem_init) -compat_symbol (libpthread, __old_sem_init, sem_init, GLIBC_2_0); -#endif |