#define _LARGEFILE_SOURCE 1
#include <sys/stat.h>
#include <unistd.h>
int __xstat64 (int __ver,
const char *__filename,
struct stat64 *__stat_buf)
int __lxstat64 (int __ver,
const char *__filename,
struct stat64 *__stat_buf)
int __fxstat64 (int __ver,
int __filedesc,
struct stat64 *__stat_buf) |
__xstat64() has the same behavior as stat64 (__filename, __stat_buf) as specified by Large File Summit.
__lxstat64() has the same behavior as lstat64 (__filename, __stat_buf) as specified by Large File Summit.
__fxstat64() has the same behavior as fstat64 (__filedesc, __stat_buf) as specified by Large File Summit.