diff options
author | Rich Felker <dalias@aerifal.cx> | 2015-04-22 02:39:01 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2015-04-22 02:39:01 -0400 |
commit | 3e827b7e68eda9813055a544d240c20d025c77c9 (patch) | |
tree | 81fa105bb98b4734217e94c61440310bb7f73b08 /src/internal | |
parent | c267fb849fdddfa236adf9c3b8b9cecc55ebb185 (diff) | |
download | musl-3e827b7e68eda9813055a544d240c20d025c77c9.tar.gz musl-3e827b7e68eda9813055a544d240c20d025c77c9.tar.xz musl-3e827b7e68eda9813055a544d240c20d025c77c9.zip |
remove additional libc struct accessor cruft
commit f9cccfc16e58b39ee381fbdfb8688db3bb8e3555 left behind the part in libc.c; remove it too.
Diffstat (limited to 'src/internal')
-rw-r--r-- | src/internal/libc.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/internal/libc.c b/src/internal/libc.c index 942f6b44..2e10942d 100644 --- a/src/internal/libc.c +++ b/src/internal/libc.c @@ -1,18 +1,6 @@ #include "libc.h" -#ifdef USE_LIBC_ACCESSOR -struct __libc *__libc_loc() -{ - static struct __libc __libc; - return &__libc; -} -#else struct __libc __libc; -#endif - -#ifdef BROKEN_VISIBILITY -__asm__(".hidden __libc"); -#endif size_t __hwcap; size_t __sysinfo; |