954efedf8b04eee03e09d26b36563097ef2c65db
[musl] / src / internal / libc.c
1 #include "libc.h"
2
3 #ifdef __PIC__
4 struct __libc *__libc_loc()
5 {
6         static struct __libc __libc;
7         return &__libc;
8 }
9 #else
10 struct __libc __libc;
11 #endif