Merge "Remove the __USE_GNU guard from pthread_setname_np again."
diff --git a/libc/include/pthread.h b/libc/include/pthread.h
index c67f239..ccfd751 100644
--- a/libc/include/pthread.h
+++ b/libc/include/pthread.h
@@ -247,8 +247,9 @@
 
 #if defined(__USE_GNU)
 int pthread_getname_np(pthread_t, char*, size_t) __nonnull((2));
-int pthread_setname_np(pthread_t, const char*) __nonnull((2));
 #endif
+/* TODO: this should be __USE_GNU too. */
+int pthread_setname_np(pthread_t, const char*) __nonnull((2));
 
 int pthread_setschedparam(pthread_t, int, const struct sched_param*) __nonnull((3));