]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - dirent/versionsort64.c
powerpc: generic nearbyint/nearbyintf
[thirdparty/glibc.git] / dirent / versionsort64.c
index 5b40e10bd72821a881d8ca67059d8d3d7661996a..8e394b2a25b8b06d723f6af7ec5b09c573b76444 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1992, 1997, 1998, 2000, 2009 Free Software Foundation, Inc.
+/* Copyright (C) 1992-2019 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
@@ -15,7 +15,9 @@
    License along with the GNU C Library; if not, see
    <http://www.gnu.org/licenses/>.  */
 
+#define versionsort __no_versionsort_decl
 #include <dirent.h>
+#undef versionsort
 #include <string.h>
 
 int
@@ -23,3 +25,7 @@ versionsort64 (const struct dirent64 **a, const struct dirent64 **b)
 {
   return __strverscmp ((*a)->d_name, (*b)->d_name);
 }
+
+#if !_DIRENT_MATCHES_DIRENT64
+weak_alias (versionsort64, versionsort)
+#endif