| 1234567891011121314151617 | #include <features.h>#undef errnoextern int errno;extern int h_errno;#if 0/* Unfortunately, this doesn't work... */int h_errno __attribute__ ((section  (".bss"))) = 0;int errno __attribute__ ((section  (".bss"))) = 0;#elseint _errno = 0;int _h_errno = 0;#endifweak_alias (_errno, errno)weak_alias(_h_errno, h_errno);
 |