keep user-provided CFLAGS/LDFLAGS separate from those added by configure
[musl] / src / errno / __errno_location.c
index 3e92d7c..7172a1b 100644 (file)
@@ -2,7 +2,5 @@
 
 int *__errno_location(void)
 {
-       static int e;
-       if (libc.main_thread) return __pthread_self()->errno_ptr;
-       return &e;
+       return &__pthread_self()->errno_val;
 }