summaryrefslogtreecommitdiff
path: root/libc/misc/dirent/alphasort64.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/misc/dirent/alphasort64.c')
-rw-r--r--libc/misc/dirent/alphasort64.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/misc/dirent/alphasort64.c b/libc/misc/dirent/alphasort64.c
index c6cfcdacf..2bba1fcc9 100644
--- a/libc/misc/dirent/alphasort64.c
+++ b/libc/misc/dirent/alphasort64.c
@@ -16,9 +16,10 @@
#include <string.h>
#include "dirstream.h"
+libc_hidden_proto(strcmp)
int alphasort64(const void * a, const void * b)
{
- return __strcmp ((*(const struct dirent64 **) a)->d_name,
+ return strcmp ((*(const struct dirent64 **) a)->d_name,
(*(const struct dirent64 **) b)->d_name);
}