LibC: Add stubs for tmpfile, mktemp and fchmod

This commit is contained in:
2024-08-09 17:02:20 +03:00
parent 2797fe116f
commit 6cda639869
4 changed files with 18 additions and 0 deletions

View File

@@ -514,6 +514,11 @@ int putenv(char* string)
return 0;
}
char* mktemp(char*)
{
ASSERT_NOT_REACHED();
}
size_t mbstowcs(wchar_t* __restrict pwcs, const char* __restrict s, size_t n)
{
auto* us = reinterpret_cast<const unsigned char*>(s);