musl/src/internal/libc.c

12 lines
158 B
C
Raw Normal View History

2011-02-12 00:22:29 -05:00
#include "libc.h"
#ifdef USE_LIBC_ACCESSOR
struct __libc *__libc_loc()
{
static struct __libc __libc;
return &__libc;
}
#else
struct __libc __libc;
#endif