errno.c 296 B

123456789101112131415
  1. #include "internal_errno.h"
  2. #ifdef __UCLIBC_HAS_THREADS__
  3. libc_hidden_proto(errno)
  4. libc_hidden_proto(h_errno)
  5. #endif
  6. int errno = 0;
  7. int h_errno = 0;
  8. #ifdef __UCLIBC_HAS_THREADS__
  9. //weak_alias(_errno, errno)
  10. libc_hidden_def(errno)
  11. //weak_alias(_h_errno, h_errno)
  12. libc_hidden_def(h_errno)
  13. #endif