diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-02-26 11:50:48 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-02-26 11:50:48 +0000 |
commit | cb6028dcf8d1711d5e979a8906f8811a61ad897b (patch) | |
tree | e390aeca825e3f00b22d9f1951a75652b3de689c /libc/misc/statfs/fstatvfs.c | |
parent | ae966d0bd9b9d9e26b18f10f874e86607567145f (diff) |
Fix redefinition problem
Diffstat (limited to 'libc/misc/statfs/fstatvfs.c')
-rw-r--r-- | libc/misc/statfs/fstatvfs.c | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/libc/misc/statfs/fstatvfs.c b/libc/misc/statfs/fstatvfs.c index 9fb21aed6..84f68ae9b 100644 --- a/libc/misc/statfs/fstatvfs.c +++ b/libc/misc/statfs/fstatvfs.c @@ -20,9 +20,16 @@ #include <features.h> #ifdef __UCLIBC_HAVE_LFS__ -# define _FILE_OFFSET_BITS 64 -# define __USE_FILE_OFFSET64 -# define __USE_LARGEFILE64 +#if defined _FILE_OFFSET_BITS && _FILE_OFFSET_BITS != 64 +#undef _FILE_OFFSET_BITS +#define _FILE_OFFSET_BITS 64 +#endif +#ifndef __USE_FILE_OFFSET64 +# define __USE_FILE_OFFSET64 1 +#endif +#ifndef __USE_LARGEFILE64 +# define __USE_LARGEFILE64 1 +#endif #endif #define __USE_GNU |