diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-11-14 11:09:46 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-11-14 11:09:46 +0000 |
commit | 62653059d61eae9c559b514bb126df9e2e845273 (patch) | |
tree | a295a9292cd4d22e4932e0054afd83cb268fbf15 /libc/misc/dirent/scandir64.c | |
parent | a5cc55111f77315fc7e04613772237b52a3dbfdf (diff) |
Scrub up some lingering problems preventing readdir64 from working
and creating several *64 problems, particualrly when client apps
used -D_FILE_OFFSET_BITS=64 -D__USE_FILE_OFFSET64. All better now.
-Erik
Diffstat (limited to 'libc/misc/dirent/scandir64.c')
-rw-r--r-- | libc/misc/dirent/scandir64.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/misc/dirent/scandir64.c b/libc/misc/dirent/scandir64.c index 6b0892191..6c6697b42 100644 --- a/libc/misc/dirent/scandir64.c +++ b/libc/misc/dirent/scandir64.c @@ -24,16 +24,17 @@ */ #include <features.h> +#ifdef __UCLIBC_HAVE_LFS__ #define _FILE_OFFSET_BITS 64 #define __USE_LARGEFILE64 #define __USE_FILE_OFFSET64 +#include <dirent.h> #include <stdio.h> #include <string.h> #include <stdlib.h> #include <sys/types.h> #include "dirstream.h" -#ifdef __UCLIBC_HAVE_LFS__ /* * FIXME: This is a simple hack version which doesn't sort the data, and |