9a9b91c940
It's finally done.. Signed-off-by: kaguya <vpshinomiya@protonmail.com>
19 lines
382 B
C++
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();
|
|
}
|
|
|