mirror of https://git.musl-libc.org/git/musl
2 changed files with 12 additions and 0 deletions
@ -0,0 +1,10 @@ |
|||||
|
#include "locale_impl.h" |
||||
|
#include "pthread_impl.h" |
||||
|
|
||||
|
locale_t uselocale(locale_t l) |
||||
|
{ |
||||
|
pthread_t self = pthread_self(); |
||||
|
locale_t old = self->locale; |
||||
|
if (l) self->locale = l; |
||||
|
return old; |
||||
|
} |
||||
Loading…
Reference in new issue