]> git.ipfire.org Git - thirdparty/glibc.git/blame - dirent/scandirat.c
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / dirent / scandirat.c
CommitLineData
f7a9f785 1/* Copyright (C) 1992-2016 Free Software Foundation, Inc.
c55fbd1e
UD
2 This file is part of the GNU C Library.
3
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
8
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
13
14 You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>. */
c55fbd1e 17
8e49df1d
RM
18/* We need to avoid the header declaration of scandir64, because
19 the types don't match scandir and then the compiler will
20 complain about the mismatch when we do the alias below. */
21#define scandirat64 __renamed_scandirat64
22
c55fbd1e 23#include <dirent.h>
8e49df1d
RM
24
25#undef scandirat64
26
c55fbd1e 27#ifndef SCANDIRAT
d2ee815a
RM
28# define SCANDIRAT __scandirat
29# define SCANDIR_TAIL __scandir_tail
30# define DIRENT_TYPE struct dirent
40176158 31# define SCANDIRAT_WEAK_ALIAS
c55fbd1e
UD
32#endif
33
c55fbd1e 34int
d2ee815a
RM
35SCANDIRAT (int dfd, const char *dir,
36 DIRENT_TYPE ***namelist,
37 int (*select) (const DIRENT_TYPE *),
38 int (*cmp) (const DIRENT_TYPE **, const DIRENT_TYPE **))
c55fbd1e 39{
d2ee815a 40 return SCANDIR_TAIL (__opendirat (dfd, dir), namelist, select, cmp);
c55fbd1e 41}
14d96785 42libc_hidden_def (SCANDIRAT)
40176158
JM
43#ifdef SCANDIRAT_WEAK_ALIAS
44weak_alias (__scandirat, scandirat)
45#endif
8e49df1d
RM
46
47#ifdef _DIRENT_MATCHES_DIRENT64
48weak_alias (scandirat, scandirat64)
49#endif