blob: d3f3ecb831b1d50af00f06013585b0d9bc1b68b9 [file] [log] [blame]
#include <locale.h>
#include "locale_impl.h"
#include "starboard/common/log.h"
#include "starboard/system.h"
// Starboard provides a mechanism for querying for the system's locale name, but
// not for setting it.
char *setlocale(int cat, const char *name) {
SB_DCHECK(!name);
return SbSystemGetLocaleId();
}