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

@@ -840,3 +840,8 @@ int vsscanf(const char* s, const char* format, va_list arguments)
}, &s
);
}
FILE* tmpfile(void)
{
ASSERT_NOT_REACHED();
}