]> git.ipfire.org Git - thirdparty/glibc.git/blame - io/ftw64.c
S390: Increase function alignment to 16 bytes.
[thirdparty/glibc.git] / io / ftw64.c
CommitLineData
dfd2257a 1/* File tree walker functions. LFS version.
04277e02 2 Copyright (C) 1996-2019 Free Software Foundation, Inc.
478b92f0 3 This file is part of the GNU C Library.
dfd2257a 4 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
28f540f4 5
478b92f0 6 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
28f540f4 10
478b92f0
UD
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 14 Lesser General Public License for more details.
28f540f4 15
41bdb6e2 16 You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
17 License along with the GNU C Library; if not, see
18 <http://www.gnu.org/licenses/>. */
28f540f4 19
dfd2257a
UD
20#define FTW_NAME ftw64
21#define NFTW_NAME nftw64
ca10f338
UD
22#define NFTW_OLD_NAME __old_nftw64
23#define NFTW_NEW_NAME __new_nftw64
dfd2257a
UD
24#define INO_T ino64_t
25#define STAT stat64
dfd2257a
UD
26#define LXSTAT __lxstat64
27#define XSTAT __xstat64
d369ad76 28#define FXSTATAT __fxstatat64
dfd2257a
UD
29#define FTW_FUNC_T __ftw64_func_t
30#define NFTW_FUNC_T __nftw64_func_t
28f540f4 31
dfd2257a 32#include "ftw.c"