blob: 4fc5c64ed118245fdb910d9560524dae1defee00 (
plain) (
tree)
|
|
#include "locale_impl.h"
#include "pthread_impl.h"
#include "libc.h"
locale_t uselocale(locale_t l)
{
pthread_t self = __pthread_self();
locale_t old = self->locale;
if (l) self->locale = l;
return old;
}
weak_alias(uselocale, __uselocale);
|