* sysdeps/generic/errno-loc.c [! USE___THREAD]: Use this conditional
in place of [!(USE_TLS && HAVE___THREAD)].
(__errno_location) [! USE___THREAD]: Define as strong, not weak.
#include <errno.h>
#include <tls.h>
-#if !(USE_TLS && HAVE___THREAD)
+#if ! USE___THREAD
#undef errno
extern int errno;
#endif
int *
+#if ! USE___THREAD
weak_const_function
+#endif
__errno_location (void)
{
return &errno;