Files
kaguya 9a9b91c940 user: implement mlibc as the libc, finally.
It's finally done..

Signed-off-by: kaguya <vpshinomiya@protonmail.com>
2026-05-02 03:31:49 -04:00

19 lines
382 B
C++

#include <ftw.h>
#include <bits/ensure.h>
int ftw(const char *, int (*fn)(const char *, const struct stat *, int), int) {
(void)fn;
__ensure(!"ftw() not implemented");
__builtin_unreachable();
}
int nftw(const char *, int (*fn)(const char *, const struct stat *, int, struct FTW *),
int, int) {
(void)fn;
__ensure(!"nftw() not implemented");
__builtin_unreachable();
}