blob: d22d274708b0d084b30cd72b713df740841e62b4 (
plain) (
tree)
|
|
#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;
|