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/fstatfs64.c | |
parent | ae966d0bd9b9d9e26b18f10f874e86607567145f (diff) |
Fix redefinition problem
Diffstat (limited to 'libc/misc/statfs/fstatfs64.c')
-rw-r--r-- | libc/misc/statfs/fstatfs64.c | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/libc/misc/statfs/fstatfs64.c b/libc/misc/statfs/fstatfs64.c index 9f45cf2db..c3b69535e 100644 --- a/libc/misc/statfs/fstatfs64.c +++ b/libc/misc/statfs/fstatfs64.c @@ -21,9 +21,16 @@ #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 #include <errno.h> #include <string.h> |