libc.c 148 B

1234567891011
  1. #include "libc.h"
  2. #ifdef __PIC__
  3. struct __libc *__libc_loc()
  4. {
  5. static struct __libc __libc;
  6. return &__libc;
  7. }
  8. #else
  9. struct __libc __libc;
  10. #endif