about summary refs log tree commit diff
path: root/include/ftw.h
blob: 8fb89c4046d00cdc812ed24d574711576f8e1e2b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef _FTW_H
#include <io/ftw.h>

#ifndef _ISOMAC
# if __TIMESIZE != 64
#  include <sys/stat.h>

typedef int (*__ftw64_time64_func_t) (const char *,
				      const struct __stat64_t64 *, int);
typedef int (*__nftw64_time64_func_t) (const char *,
				       const struct __stat64_t64 *, int,
				       struct FTW *);

extern int __ftw64_time64 (const char *, __ftw64_time64_func_t, int);
extern int __nftw64_time64 (const char *, __nftw64_time64_func_t, int, int);
# endif
#endif

#endif /* _FTW_H  */