diff options
Diffstat (limited to 'libc/misc/dirent/alphasort64.c')
-rw-r--r-- | libc/misc/dirent/alphasort64.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/libc/misc/dirent/alphasort64.c b/libc/misc/dirent/alphasort64.c index d65b59647..ef1e83e45 100644 --- a/libc/misc/dirent/alphasort64.c +++ b/libc/misc/dirent/alphasort64.c @@ -5,12 +5,14 @@ */ #include <_lfs_64.h> - #include <dirent.h> -#include <string.h> -#include "dirstream.h" + +#if __WORDSIZE != 64 +# include <string.h> +# include "dirstream.h" int alphasort64(const struct dirent64 **a, const struct dirent64 **b) { return strcmp((*a)->d_name, (*b)->d_name); } +#endif |