blob: f369976cc2c164882017c40ab420e1a8b0bb49fc (
plain)
1
2
3
4
5
|
#define __statvfs64(file, buf) __no_statvfs64(file, buf)
#define statvfs64(file, buf) no_statvfs64(file, buf)
#include "../statvfs.c"
strong_alias (statvfs, __statvfs64)
weak_alias (statvfs, statvfs64)
|