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,13 @@
#include <BAN/Assert.h>
#include <ftw.h>
int ftw(const char*, int (*)(const char*, const struct stat*, int), int)
{
ASSERT_NOT_REACHED();
}
int nftw(const char*, int (*)(const char*, const struct stat*, int, struct FTW*), int, int)
{
ASSERT_NOT_REACHED();
}