Files
KirkOS/user/include/mlibc/options/posix/generic/langinfo.cpp
T
kaguya 9a9b91c940 user: implement mlibc as the libc, finally.
It's finally done..

Signed-off-by: kaguya <vpshinomiya@protonmail.com>
2026-05-02 03:31:49 -04:00

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();
}