math: move trivial x86-family sqrt functions to C with inline asm
[musl] / src / locale / uselocale.c
index 4fc5c64..0fc5ecb 100644 (file)
@@ -2,12 +2,15 @@
 #include "pthread_impl.h"
 #include "libc.h"
 
-locale_t uselocale(locale_t l)
+locale_t __uselocale(locale_t new)
 {
        pthread_t self = __pthread_self();
        locale_t old = self->locale;
-       if (l) self->locale = l;
-       return old;
+       locale_t global = &libc.global_locale;
+
+       if (new) self->locale = new == LC_GLOBAL_LOCALE ? global : new;
+
+       return old == global ? LC_GLOBAL_LOCALE : old;
 }
 
-weak_alias(uselocale, __uselocale);
+weak_alias(__uselocale, uselocale);