generalize mips-specific reloc code not to hard-code sym/type encoding
[musl.git] / src / dirent / alphasort.c
blob42050fb7cb52eda81b04d923f674d7c9c80f6acc
1 #include <string.h>
2 #include <dirent.h>
3 #include "libc.h"
5 int alphasort(const struct dirent **a, const struct dirent **b)
7 return strcoll((*a)->d_name, (*b)->d_name);
10 LFS64(alphasort);