blob: b239cbdc14d639899492d3eaf85b8b35752a3a2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <langinfo.h>
#include <bits/ensure.h>
#include <mlibc/debug.hpp>
#include <mlibc/locale.hpp>
char *nl_langinfo(nl_item item) {
return mlibc::nl_langinfo(item);
}
char *nl_langinfo_l(nl_item, locale_t) {
__ensure(!"Not implemented");
__builtin_unreachable();
}
|