diff options
Diffstat (limited to 'libc/sysdeps/linux/bfin/bits')
-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 478ea2dfd..6230b03d8 100644 --- a/libc/sysdeps/linux/bfin/bits/syscalls.h +++ b/libc/sysdeps/linux/bfin/bits/syscalls.h @@ -6,13 +6,13 @@ #ifndef __ASSEMBLER__ -#define INTERNAL_SYSCALL(name, err, nr, args...) \ +#define INTERNAL_SYSCALL_NCS(name, err, nr, args...) \ ({ \ long __res; \ __asm__ __volatile__ ( \ "excpt 0;\n\t" \ : "=q0" (__res) \ - : "qA" (__NR_##name) ASMFMT_##nr(args) \ + : "qA" (name) ASMFMT_##nr(args) \ : "memory","CC"); \ __res; \ }) |