fix segfault in lutimes when tv argument is NULL
[musl] / src / dirent / alphasort.c
index 42050fb..bee672e 100644 (file)
@@ -1,10 +1,9 @@
 #include <string.h>
 #include <dirent.h>
-#include "libc.h"
 
 int alphasort(const struct dirent **a, const struct dirent **b)
 {
        return strcoll((*a)->d_name, (*b)->d_name);
 }
 
-LFS64(alphasort);
+weak_alias(alphasort, alphasort64);