summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libcruft/alphasort.c
blob: f5a81dc18dc30fb686429c93973164ceb51cfd73 (plain)
1
2
3
4
5
6
#include <dirent.h>
#include <string.h>

int alphasort(const struct dirent **a, const struct dirent **b) {
  return strcmp((*a)->d_name,(*b)->d_name);
}