diff options
author | Ulrich Drepper <drepper@redhat.com> | 2009-03-15 21:33:19 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2009-03-15 21:33:19 +0000 |
commit | eee6b1432794967d4272394dfed1e2b5cca4be39 (patch) | |
tree | 23224c276f09d0b733872790fa41c1a4cbe76787 /dirent/versionsort64.c | |
parent | cd2d01faa53a48640e97d55aa0bf2fee99a7c8cb (diff) | |
download | glibc-eee6b1432794967d4272394dfed1e2b5cca4be39.tar.gz glibc-eee6b1432794967d4272394dfed1e2b5cca4be39.tar.xz glibc-eee6b1432794967d4272394dfed1e2b5cca4be39.zip |
[BZ #9759]
* dirent/dirent.h: Adjust prototypes of scandir, scandir64, alphasort, alphasort64, versionsort, and versionsort64 to POSIX 2008. * dirent/alphasort.c: Adjust implementation to type change. * dirent/alphasort64.c: Likewise. * dirent/scandir.c: Likewise. * dirent/versionsort.c: Likewise. * dirent/versionsort64.c: Likewise. * sysdeps/wordsize-64/alphasort.c: Add hack to hide alphasort64 declaration. * sysdeps/wordsize-64/versionsort.c: Add hack to hide versionsort64 declaration.
Diffstat (limited to 'dirent/versionsort64.c')
-rw-r--r-- | dirent/versionsort64.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/dirent/versionsort64.c b/dirent/versionsort64.c index e471827023..5b2833111b 100644 --- a/dirent/versionsort64.c +++ b/dirent/versionsort64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992, 1997, 1998, 2000 Free Software Foundation, Inc. +/* Copyright (C) 1992, 1997, 1998, 2000, 2009 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 @@ -20,8 +20,7 @@ #include <string.h> int -versionsort64 (const void *a, const void *b) +versionsort64 (const struct dirent64 **a, const struct dirent64 **b) { - return __strverscmp ((*(const struct dirent64 **) a)->d_name, - (*(const struct dirent64 **) b)->d_name); + return __strverscmp ((*a)->d_name, (*b)->d_name); } |