summaryrefslogtreecommitdiff
path: root/LibC/locale.cpp
blob: a17c38f80182b4b63d049aa309f471c129b72ce0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <locale.h>
#include <assert.h>
#include <stdio.h>

extern "C" {

char* setlocale(int category, const char* locale)
{
    dbgprintf("FIXME(LibC): setlocale(%d, %s)\n", category, locale);
    return nullptr;
}

struct lconv* localeconv()
{
    assert(false);
}

}