errno.c 292 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. libc_hidden_def(errno)
  10. weak_alias(errno, _errno)
  11. libc_hidden_def(h_errno)
  12. weak_alias(h_errno, _h_errno)
  13. #endif