summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/network/h_errno.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/network/h_errno.c b/src/network/h_errno.c
index 8677a92b..638f7718 100644
--- a/src/network/h_errno.c
+++ b/src/network/h_errno.c
@@ -1,7 +1,11 @@
#include <netdb.h>
#include "pthread_impl.h"
+#undef h_errno
+int h_errno;
+
int *__h_errno_location(void)
{
+ if (!__pthread_self()->stack) return &h_errno;
return &__pthread_self()->h_errno_val;
}