mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
14 lines
220 B
C++
14 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;
|
|
}
|
|
|
|
}
|