1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-15 03:14:58 +00:00
serenity/LibC/locale.cpp

13 lines
220 B
C++

#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;
}
}