mirror of
https://github.com/RGBCube/serenity
synced 2025-05-16 18:05:07 +00:00

Move syscall to int 0x82 since using int 0x80 was kinda prone to fork bombs when building things on Linux. :^)
18 lines
271 B
C++
18 lines
271 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;
|
|
}
|
|
|
|
struct lconv* localeconv()
|
|
{
|
|
assert(false);
|
|
}
|
|
|
|
}
|