diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-05-04 00:31:25 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-05-04 00:31:25 -0400 |
commit | f0b85fd926c5a381416c94be62e7bc20d9fdbdb1 (patch) | |
tree | 9b7c800d5b67e35f27f6a3e98ba112188ff2874a /include/sys/statfs.h | |
parent | 2dd8d5e1b8ba1118ff1782e96545cb8a2318592c (diff) | |
download | musl-f0b85fd926c5a381416c94be62e7bc20d9fdbdb1.tar.gz musl-f0b85fd926c5a381416c94be62e7bc20d9fdbdb1.tar.xz musl-f0b85fd926c5a381416c94be62e7bc20d9fdbdb1.zip |
add *64 junk for sys/*.h headers
Diffstat (limited to 'include/sys/statfs.h')
-rw-r--r-- | include/sys/statfs.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/sys/statfs.h b/include/sys/statfs.h index f5239d8f..c1cbe9e0 100644 --- a/include/sys/statfs.h +++ b/include/sys/statfs.h @@ -16,6 +16,13 @@ typedef struct { int statfs (const char *, struct statfs *); int fstatfs (int, struct statfs *); +#ifdef _LARGEFILE64_SOURCE +#define statfs64 statfs +#define fstatfs64 fstatfs +#define fsblkcnt64_t fsblkcnt_t +#define fsfilcnt64_t fsfilcnt_t +#endif + #ifdef __cplusplus } #endif |