| #include <features.h>#include <errno.h>#undef errno#ifdef __UCLIBC_HAS_TLS____thread int errno;extern __thread int __libc_errno __attribute__ ((alias ("errno"))) attribute_hidden;#elseextern int errno;int errno = 0;# ifdef __UCLIBC_HAS_THREADS__strong_alias(errno,_errno)# endif#endif
 |