internal_errno.h 264 B

123456789101112131415161718192021
  1. /*
  2. *
  3. */
  4. #include <features.h>
  5. #include <errno.h>
  6. #include <netdb.h>
  7. #ifndef __UCLIBC_HAS_TLS__
  8. #undef errno
  9. #undef h_errno
  10. extern int h_errno;
  11. extern int errno;
  12. #ifdef __UCLIBC_HAS_THREADS__
  13. libc_hidden_proto(h_errno)
  14. libc_hidden_proto(errno)
  15. #endif
  16. #endif