LibC: Add stubs for some functions in {dlfcn,ftw,utime,wchar}.h
This commit is contained in:
13
userspace/libraries/LibC/ftw.cpp
Normal file
13
userspace/libraries/LibC/ftw.cpp
Normal 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();
|
||||
}
|
||||
Reference in New Issue
Block a user