9a9b91c940
It's finally done.. Signed-off-by: kaguya <vpshinomiya@protonmail.com>
16 lines
276 B
C++
16 lines
276 B
C++
|
|
#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();
|
|
}
|
|
|