c1e21ca021a45ebe7f2736a4cba13d75e0c1613d
[musl] / src / internal / libc.c
1 #include "libc.h"
2
3 #ifdef USE_LIBC_ACCESSOR
4 struct __libc *__libc_loc()
5 {
6         static struct __libc __libc;
7         return &__libc;
8 }
9 #else
10 struct __libc __libc;
11 #endif
12
13 #ifdef BROKEN_VISIBILITY
14 __asm__(".hidden __libc");
15 #endif