summaryrefslogtreecommitdiff
path: root/dirent/alphasort.c
diff options
context:
space:
mode:
Diffstat (limited to 'dirent/alphasort.c')
-rw-r--r--dirent/alphasort.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/dirent/alphasort.c b/dirent/alphasort.c
index 95e0da056c..a589775ef1 100644
--- a/dirent/alphasort.c
+++ b/dirent/alphasort.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1992, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1992, 1997, 1998 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -22,6 +22,6 @@
int
alphasort (const void *a, const void *b)
{
- return strcmp ((*(const struct dirent **) a)->d_name,
- (*(const struct dirent **) b)->d_name);
+ return strcoll ((*(const struct dirent **) a)->d_name,
+ (*(const struct dirent **) b)->d_name);
}