diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-06-21 21:32:00 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-06-21 21:32:00 +0000 |
commit | 28a540720b6db3302cb6a2af3173cb070e2fdcbb (patch) | |
tree | 340a2b70a70edee510ddce9b48f346e0ab983304 /ldso | |
parent | cc19adf7bb1865d73350a9723b49b465dea78b27 (diff) |
Fix support for 2.0.x linux kernels. Oops.
-Erik
Diffstat (limited to 'ldso')
-rw-r--r-- | ldso/ldso/ld_syscall.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ldso/ldso/ld_syscall.h b/ldso/ldso/ld_syscall.h index db7447f67..386756d05 100644 --- a/ldso/ldso/ld_syscall.h +++ b/ldso/ldso/ld_syscall.h @@ -9,8 +9,8 @@ /* 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 _SYS_STAT_H -#include <asm/stat.h> +#define new_stat stat +#include <asm/stat.h> /* Encoding of the file mode. */ |