#include #include "dietfeatures.h" #include #if __WORDSIZE == 32 extern int __dietlibc_statfs64(const char *path, size_t bufsize, struct statfs64 *__buf); extern void __statfs64_cvt(const struct statfs *src,struct statfs64 *dest); int statfs64(const char *__file, struct statfs64 *__buf) { #ifdef WANT_LARGEFILE_BACKCOMPAT if (__dietlibc_statfs64(__file,sizeof(*__buf),__buf)) { struct statfs temp; if (errno!=ENOSYS) return -1; if (statfs(__file,&temp)) return -1; __statfs64_cvt(&temp,__buf); } return 0; #else return __dietlibc_statfs64(__file,sizeof(*__buf),__buf); #endif } #endif