fs: fix build on musl libc

Remove leftover fts.h include from back when this file used
it. dirent.h is used as a replacement and, as part of the POSIX
standard, it should be used instead of the nonstandard fts.h.
This commit is contained in:
Jeremy Baxter 2024-02-29 17:22:17 +13:00
parent 3e4e590776
commit 7c7f7e588a

1
lfs.c
View file

@ -15,7 +15,6 @@
#include <dirent.h> #include <dirent.h>
#include <errno.h> #include <errno.h>
#include <fcntl.h> #include <fcntl.h>
#include <fts.h>
#include <libgen.h> #include <libgen.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>