summaryrefslogtreecommitdiff
path: root/libc
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-05-12 00:33:22 +0000
committerEric Andersen <andersen@codepoet.org>2002-05-12 00:33:22 +0000
commit5dd841936bbc9346f94832ddd58badc3a185f5ee (patch)
tree90814ea819837a575f0afa5c2a6a57d318f7f75e /libc
parent4a0ea7553a297d2a846ef2dd4d417fa6936251c8 (diff)
Fixes for 64 bit arches
Diffstat (limited to 'libc')
-rw-r--r--libc/sysdeps/linux/common/statfix64.h30
1 files changed, 29 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/statfix64.h b/libc/sysdeps/linux/common/statfix64.h
index 8d6a86a01..a35ca7ae3 100644
--- a/libc/sysdeps/linux/common/statfix64.h
+++ b/libc/sysdeps/linux/common/statfix64.h
@@ -2,6 +2,7 @@
#define STATFIX_H
#include <features.h>
+#include <limits.h>
#if defined _FILE_OFFSET_BITS && _FILE_OFFSET_BITS != 64
#undef _FILE_OFFSET_BITS
@@ -16,7 +17,8 @@
# undef __USE_FILE_OFFSET64
#endif
-#ifdef __UCLIBC_HAVE_LFS__
+#ifdef __UCLIBC_HAVE_LFS__
+#if defined __WORDSIZE && __WORDSIZE < 64
#include <sys/types.h>
@@ -43,7 +45,33 @@
extern void statfix64(struct libc_stat64 *libcstat, struct kernel_stat64 *kstat);
extern int __fxstat64(int version, int fd, struct libc_stat64 * statbuf);
+#else /* __WORDSIZE */
+#include <sys/types.h>
+
+/* Pull in whatever this particular arch's kernel thinks the kernel version of
+ * struct stat should look like. It turns out that each arch has a different
+ * opinion on the subject, and different kernel revs use different names... */
+#define stat kernel_stat
+#define new_stat kernel_stat
+#define kernel_stat64 kernel_stat
+#include <asm/stat.h>
+#undef new_stat64
+#undef stat64
+#undef new_stat
+#undef stat
+
+
+/* Now pull in libc's version of stat */
+#define stat libc_stat
+#define stat64 libc_stat64
+#include <sys/stat.h>
+#undef stat64
+#undef stat
+
+extern void statfix64(struct libc_stat64 *libcstat, struct kernel_stat64 *kstat);
+extern int __fxstat64(int version, int fd, struct libc_stat64 * statbuf);
+#endif /* __WORDSIZE */
#endif /* __UCLIBC_HAVE_LFS__ */
#endif