summaryrefslogtreecommitdiff
path: root/localedef/include/sys/stat.h
blob: 3a46b604ee79592ceab3aedf37081754e14e07e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifdef HAVE_SYS_STAT_H
#include_next <sys/stat.h>
#endif

#ifndef HAVE_STAT64
#define HAVE_STAT64 1
/* Don't define this as a function macro.  We want 'struct stat64' to be
   treated as 'struct stat'.  */
#define stat64 stat
#define fstat64(FD, BUF) fstat (FD, BUF)
#endif