blob: 42050fb7cb52eda81b04d923f674d7c9c80f6acc [file] [log] [blame]
Rich Felker0b44a032011-02-12 00:22:29 -05001#include <string.h>
2#include <dirent.h>
3#include "libc.h"
4
5int alphasort(const struct dirent **a, const struct dirent **b)
6{
7 return strcoll((*a)->d_name, (*b)->d_name);
8}
9
10LFS64(alphasort);