From: Rich Felker Date: Wed, 22 Apr 2015 06:39:01 +0000 (-0400) Subject: remove additional libc struct accessor cruft X-Git-Tag: v1.1.9~31 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=3e827b7e68eda9813055a544d240c20d025c77c9;p=oweals%2Fmusl.git remove additional libc struct accessor cruft commit f9cccfc16e58b39ee381fbdfb8688db3bb8e3555 left behind the part in libc.c; remove it too. --- 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;