LibC: Add stubs for some functions in {dlfcn,ftw,utime,wchar}.h

This commit is contained in:
2024-08-09 17:01:41 +03:00
parent e768cd53fb
commit 2797fe116f
5 changed files with 56 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
#include <BAN/Assert.h>
#include <utime.h>
int utime(const char*, const struct utimbuf*)
{
ASSERT_NOT_REACHED();
}