diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-01-01 22:16:11 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-01-01 22:16:11 +0000 |
commit | 8c29d069db1898b519c6c610a91a25b5ffb8c9d0 (patch) | |
tree | e2c90d09cd3329d33b26b53f0a2491e6a81a2025 /libc/sysdeps/linux/common/statfix.h | |
parent | 67d0b8edf6c8c19366c4507d8453216d007397cd (diff) |
A bunch of updates, part from Manuel Novoa III (such as more long long
support), and other updates by me (better cross platform, cross-compiler,
etc, support. Now compiles with 2.0.x kernels for armnommu.
Diffstat (limited to 'libc/sysdeps/linux/common/statfix.h')
-rw-r--r-- | libc/sysdeps/linux/common/statfix.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/statfix.h b/libc/sysdeps/linux/common/statfix.h index 21a776c92..df85d84d4 100644 --- a/libc/sysdeps/linux/common/statfix.h +++ b/libc/sysdeps/linux/common/statfix.h @@ -3,9 +3,11 @@ /* Pull in whatever this particular arch's kernel thinks the kernel version of * struct stat should look like. It turn out that each arch has a different - * opinion on the subject... */ + * opinion on the subject, and different kernel revs use different names... */ #define stat kernel_stat +#define new_stat kernel_stat #include <asm/stat.h> +#undef new_stat #undef stat /* Now pull in libc's version of stat */ |