errno.c 203 B

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