lang-bootstrap/05/musl-final/src/misc/ftw.c

10 lines
196 B
C
Raw Permalink Normal View History

2025-04-05 10:55:40 +01:00
#include <ftw.h>
#include "libc.h"
int ftw(const char *path, int (*fn)(const char *, const struct stat *, int), int fd_limit)
{
return nftw(path, (void *)fn, fd_limit, FTW_PHYS);
}
LFS64(ftw);