diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2016-11-27 22:31:25 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2016-11-27 22:32:11 +0100 |
commit | 74ca8d6f5d2e29bb7cf4606531313ee8c52b9eda (patch) | |
tree | b2e5ad49c4499ca7c21a92e4d4c3e3aced7cb524 /libc/misc/ftw | |
parent | d9f4c6bb0568da6d80f60a0040354f45478f84a3 (diff) |
remove UCLIBC_HAS_LFS
Diffstat (limited to 'libc/misc/ftw')
-rw-r--r-- | libc/misc/ftw/Makefile.in | 3 | ||||
-rw-r--r-- | libc/misc/ftw/ftw.c | 8 |
2 files changed, 1 insertions, 10 deletions
diff --git a/libc/misc/ftw/Makefile.in b/libc/misc/ftw/Makefile.in index 084a73009..939932b09 100644 --- a/libc/misc/ftw/Makefile.in +++ b/libc/misc/ftw/Makefile.in @@ -7,8 +7,7 @@ subdirs += libc/misc/ftw -CSRC-y := ftw.c -CSRC-$(UCLIBC_HAS_LFS) += ftw64.c +CSRC-y := ftw.c ftw64.c MISC_FTW_DIR := $(top_srcdir)libc/misc/ftw MISC_FTW_OUT := $(top_builddir)libc/misc/ftw diff --git a/libc/misc/ftw/ftw.c b/libc/misc/ftw/ftw.c index c6241ed90..0c6e617da 100644 --- a/libc/misc/ftw/ftw.c +++ b/libc/misc/ftw/ftw.c @@ -111,11 +111,7 @@ extern char *xgetcwd (void); # undef __opendir # define __opendir opendir # undef __readdir64 -# ifndef __UCLIBC_HAS_LFS__ -# define __readdir64 readdir -# else # define __readdir64 readdir64 -# endif # undef __stpcpy # define __stpcpy stpcpy # undef __tdestroy @@ -126,10 +122,6 @@ extern char *xgetcwd (void); # define __tsearch tsearch # undef internal_function # define internal_function /* empty */ -# ifndef __UCLIBC_HAS_LFS__ -# undef dirent64 -# define dirent64 dirent -# endif # undef MAX # define MAX(a, b) ((a) > (b) ? (a) : (b)) #endif |