From 8e49df1d656c393e913b6c9343f491c59bd527b2 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Mon, 6 Aug 2012 16:47:58 -0700 Subject: Clean up {alphasort,versionsort,scandir,scandirat}{,64} for struct dirent == struct dirent64. --- dirent/versionsort64.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'dirent/versionsort64.c') diff --git a/dirent/versionsort64.c b/dirent/versionsort64.c index 5b40e10..dca72e8 100644 --- a/dirent/versionsort64.c +++ b/dirent/versionsort64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992, 1997, 1998, 2000, 2009 Free Software Foundation, Inc. +/* Copyright (C) 1992-2012 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 @@ -18,8 +18,13 @@ #include #include +/* versionsort.c defines a versionsort64 alias if _DIRENT_MATCHES_DIRENT64. */ +#ifndef _DIRENT_MATCHES_DIRENT64 + int versionsort64 (const struct dirent64 **a, const struct dirent64 **b) { return __strverscmp ((*a)->d_name, (*b)->d_name); } + +#endif -- cgit v1.1