diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-08-24 01:32:27 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-08-24 01:32:27 +0000 |
commit | 45c83019f7bd1f062d30d721311b8e4f6683d8bf (patch) | |
tree | 3a89674706e3de65593c72a2316b7d8b2b9c572c /ldso | |
parent | a61c42372fab0e3b9f5fdbdadd13253dc614be78 (diff) |
Use bits/kernel_stat.h, not asm/stat.h
-Erik
Diffstat (limited to 'ldso')
-rw-r--r-- | ldso/ldso/ld_syscall.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ldso/ldso/ld_syscall.h b/ldso/ldso/ld_syscall.h index 33d15fda8..8ea8092c7 100644 --- a/ldso/ldso/ld_syscall.h +++ b/ldso/ldso/ld_syscall.h @@ -9,8 +9,7 @@ /* 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 new_stat stat -#include <asm/stat.h> +#include <bits/kernel_stat.h> /* Encoding of the file mode. */ |