diff options
author | Roland McGrath <roland@hack.frob.com> | 2012-08-06 16:47:58 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2012-08-06 16:48:36 -0700 |
commit | 8e49df1d656c393e913b6c9343f491c59bd527b2 (patch) | |
tree | ac9cb93c6181621769aba412c5bb233498b896e5 /dirent/scandirat64.c | |
parent | 03af952060fee063679864d82cdd76f94d56d263 (diff) | |
download | glibc-8e49df1d656c393e913b6c9343f491c59bd527b2.tar glibc-8e49df1d656c393e913b6c9343f491c59bd527b2.tar.gz glibc-8e49df1d656c393e913b6c9343f491c59bd527b2.tar.bz2 glibc-8e49df1d656c393e913b6c9343f491c59bd527b2.zip |
Clean up {alphasort,versionsort,scandir,scandirat}{,64} for struct dirent == struct dirent64.
Diffstat (limited to 'dirent/scandirat64.c')
-rw-r--r-- | dirent/scandirat64.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/dirent/scandirat64.c b/dirent/scandirat64.c index a816ee9e85..608ca33ac9 100644 --- a/dirent/scandirat64.c +++ b/dirent/scandirat64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000, 2009, 2011 Free Software Foundation, Inc. +/* Copyright (C) 2000-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 @@ -17,9 +17,14 @@ #include <dirent.h> +/* scandirat.c defines scandirat64 as an alias if _DIRENT_MATCHES_DIRENT64. */ +#ifndef _DIRENT_MATCHES_DIRENT64 + #define SCANDIRAT scandirat64 #define READDIR __readdir64 #define DIRENT_TYPE struct dirent64 #define SKIP_SCANDIR_CANCEL 1 #include "scandirat.c" + +#endif |