diff options
author | Peter Kjellerstedt <peter.kjellerstedt@axis.com> | 2006-02-24 14:13:12 +0000 |
---|---|---|
committer | Peter Kjellerstedt <peter.kjellerstedt@axis.com> | 2006-02-24 14:13:12 +0000 |
commit | 1e66c55e589c8f32b8961387dbf8d9b1885e7b23 (patch) | |
tree | 3850852a399033e15327eb896e92d5f167190695 /libc/sysdeps | |
parent | fecaaa7a429738c45da78db18ad29f4369f9c729 (diff) |
Fix the _syscall6() macro (I hope).
Diffstat (limited to 'libc/sysdeps')
-rw-r--r-- | libc/sysdeps/linux/bfin/bits/syscalls.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/bfin/bits/syscalls.h b/libc/sysdeps/linux/bfin/bits/syscalls.h index c51fa05d5..d8d628cab 100644 --- a/libc/sysdeps/linux/bfin/bits/syscalls.h +++ b/libc/sysdeps/linux/bfin/bits/syscalls.h @@ -139,8 +139,8 @@ type name(type1 arg1, type2 arg2, type3 arg3, type4 arg4, type5 arg5) { \ __syscall_return(type,__res); \ } -#define _syscall6(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4,type5,arg5) \ -type name(type1 arg1, type2 arg2, type3 arg3, type4 arg4, type5 arg5) { \ +#define _syscall6(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4,type5,arg5,type6,arg6) \ +type name(type1 arg1, type2 arg2, type3 arg3, type4 arg4, type5 arg5, type6 arg6) { \ long __res; \ __asm__ __volatile__ ( \ "[--sp] = r5;\n\t" \ |