summaryrefslogtreecommitdiff
path: root/libc/misc/statfs
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-02-26 11:50:48 +0000
committerEric Andersen <andersen@codepoet.org>2002-02-26 11:50:48 +0000
commitcb6028dcf8d1711d5e979a8906f8811a61ad897b (patch)
treee390aeca825e3f00b22d9f1951a75652b3de689c /libc/misc/statfs
parentae966d0bd9b9d9e26b18f10f874e86607567145f (diff)
Fix redefinition problem
Diffstat (limited to 'libc/misc/statfs')
-rw-r--r--libc/misc/statfs/fstatfs64.c13
-rw-r--r--libc/misc/statfs/fstatvfs.c13
-rw-r--r--libc/misc/statfs/statfs64.c13
-rw-r--r--libc/misc/statfs/statvfs.c13
4 files changed, 40 insertions, 12 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>
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
diff --git a/libc/misc/statfs/statfs64.c b/libc/misc/statfs/statfs64.c
index 7c8d0b3d5..187929286 100644
--- a/libc/misc/statfs/statfs64.c
+++ b/libc/misc/statfs/statfs64.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>
diff --git a/libc/misc/statfs/statvfs.c b/libc/misc/statfs/statvfs.c
index 7c002beb8..1e3ec0a36 100644
--- a/libc/misc/statfs/statvfs.c
+++ b/libc/misc/statfs/statvfs.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