Merge branch 'filestat3' of https://github.com/kusumi/fio
[fio.git] / oslib / statx.h
CommitLineData
95f31f7d
TK
1#ifndef CONFIG_HAVE_STATX
2#ifdef CONFIG_HAVE_STATX_SYSCALL
3#include <linux/stat.h>
4#include <sys/stat.h>
5#else
6#define STATX_ALL 0
7#undef statx
8struct statx
9{
10};
11#endif
12int statx(int dfd, const char *pathname, int flags, unsigned int mask,
13 struct statx *buffer);
14#endif