]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - dirent/alphasort64.c
Consolidate alphasort{64} and versionsort{64} implementation
[thirdparty/glibc.git] / dirent / alphasort64.c
index 3a47a97bb5f9fc8575e39a958c736056bb262d1e..b822333fcac63cc88d4735558654629a449eeff1 100644 (file)
    License along with the GNU C Library; if not, see
    <http://www.gnu.org/licenses/>.  */
 
+#define alphasort __no_alphasort_decl
 #include <dirent.h>
+#undef alphasort
 #include <string.h>
 
-/* alphasort.c defines alphasort64 as an alias if _DIRENT_MATCHES_DIRENT64.  */
-#if !_DIRENT_MATCHES_DIRENT64
-
 int
 alphasort64 (const struct dirent64 **a, const struct dirent64 **b)
 {
   return strcoll ((*a)->d_name, (*b)->d_name);
 }
 
+#if _DIRENT_MATCHES_DIRENT64
+weak_alias (alphasort64, alphasort)
 #endif