123456789101112131415161718 |
- #include <_lfs_64.h>
- #include <dirent.h>
- #if __WORDSIZE != 64
- # include <string.h>
- # include "dirstream.h"
- int alphasort64(const struct dirent64 **a, const struct dirent64 **b)
- {
- return strcoll((*a)->d_name, (*b)->d_name);
- }
- #endif
|