internal_errno.h 294 B

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