master
1/**
2 * This file is part of the mingw-w64 runtime package.
3 * No warranty is given; refer to the file DISCLAIMER within this package.
4 */
5
6#define FUNC_FTW ftw32
7#define FUNC_NFTW nftw32
8#define FUNC_STAT stat32
9#define STRUCT_STAT struct _stat32
10#include "ftw.c"
11
12/* On 32-bit systems is stat ABI compatible with stat32 */
13#ifndef _WIN64
14#undef nftw
15#undef ftw
16struct stat;
17int __attribute__ ((alias ("nftw32"))) __cdecl nftw(const char *, int (*) (const char *, const struct stat *, int, struct FTW *), int, int);
18int __attribute__ ((alias ("ftw32"))) __cdecl ftw(const char *, int (*) (const char *, const struct stat *, int), int);
19#endif