Sign in
cobalt
/
cobalt
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
musl
/
src
/
starboard
/
locale
/
uselocale.c
blob: d7bbe7231be34097eee35626141956c827562d51 [
file
] [
log
] [
blame
]
#include
"libc.h"
#include
"locale_impl.h"
// Starboard does not provide a mechanism to set the locale for the current
// thread.
locale_t
__uselocale
(
locale_t
new
)
{
return
&
new
;
}
weak_alias
(
__uselocale
,
uselocale
);