errno.c 240 B

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