internal_errno.h 325 B

1234567891011121314151617181920212223
  1. /*
  2. *
  3. */
  4. #include <features.h>
  5. #include <errno.h>
  6. #include <netdb.h>
  7. #undef errno
  8. #undef h_errno
  9. /* need to tweak libpthread
  10. #ifdef __UCLIBC_HAS_THREADS__
  11. # define errno __uclibc_errno
  12. # define h_errno __uclibc_h_errno
  13. #endif
  14. */
  15. extern int h_errno;
  16. libc_hidden_proto(h_errno)
  17. extern int errno;
  18. libc_hidden_proto(errno)