Luna/libc/src/locale.cpp

13 lines
224 B
C++

#include <locale.h>
static char s_default_locale[] = "C";
extern "C"
{
char* setlocale(int, const char*)
{
// FIXME: Set the current locale if <locale> is not NULL.
return s_default_locale;
}
}