diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-08-09 08:24:41 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-08-09 08:24:41 +0000 |
commit | 73307a085a839307c433ee7ce35f09c4df86b250 (patch) | |
tree | 5e58af0990b586eccd700ebbecb4c27d9c6f0e6f /ldso | |
parent | d0c48d4a7fbb39a7a4c91b833eb3d4f5ab7ba389 (diff) |
Fix a stupid typo messing up powerpc support
-Erik
Diffstat (limited to 'ldso')
-rw-r--r-- | ldso/ldso/ld_syscall.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ldso/ldso/ld_syscall.h b/ldso/ldso/ld_syscall.h index 94048cdbd..33d15fda8 100644 --- a/ldso/ldso/ld_syscall.h +++ b/ldso/ldso/ld_syscall.h @@ -51,7 +51,7 @@ static inline _syscall1(void, _dl_exit, int, status); static inline _syscall1(int, _dl_close, int, fd); -#if defined(__powerpc) || defined(__mips__) || defined(__sh__) +#if defined(__powerpc__) || defined(__mips__) || defined(__sh__) /* PowerPC, MIPS and SuperH have a different calling convention for mmap(). */ #define __NR__dl_mmap __NR_mmap static inline _syscall6(void *, _dl_mmap, void *, start, size_t, length, |