X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=src%2Finternal%2Flibc.h;h=8a84be0b90f144ccc661921c1e1553f7119d72fe;hp=ea221b6f9a4deeaba93e0879aeb333298009401f;hb=d89c9e8a63018810bb6a3e2ae55604996cc21e7b;hpb=4ee039f3545976f9e3e25a7e5d7b58f1f2316dc3 diff --git a/src/internal/libc.h b/src/internal/libc.h index ea221b6f..8a84be0b 100644 --- a/src/internal/libc.h +++ b/src/internal/libc.h @@ -4,8 +4,7 @@ #include #include -#define libc __libc -extern struct libc { +struct __libc { void (*lock)(volatile int *); void (*cancelpt)(int); int (*atexit)(void (*)(void)); @@ -16,7 +15,15 @@ extern struct libc { int (*rsyscall)(int, long, long, long, long, long, long); void (**tsd_keys)(void *); void (*fork_handler)(int); -} libc; +}; + +#ifdef __PIC__ +extern struct __libc *__libc_loc(void) __attribute__((const)); +#define libc (*__libc_loc()) +#else +extern struct __libc __libc; +#define libc __libc +#endif /* Designed to avoid any overhead in non-threaded processes */