diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-02-01 00:14:52 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-02-01 00:14:52 +0000 |
commit | d9534af8dc90fc4f1a827738e713cedcf213fdc3 (patch) | |
tree | 631e00ed8a0b7debb84867e5137ef9d91570e65f /libc/sysdeps/linux | |
parent | fbef15d8d3ff9ceb388913b9ad647d986e5a0500 (diff) |
add syscall6
Diffstat (limited to 'libc/sysdeps/linux')
-rw-r--r-- | libc/sysdeps/linux/cris/bits/syscalls.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/cris/bits/syscalls.h b/libc/sysdeps/linux/cris/bits/syscalls.h index 5f587854f..ce68c04d4 100644 --- a/libc/sysdeps/linux/cris/bits/syscalls.h +++ b/libc/sysdeps/linux/cris/bits/syscalls.h @@ -62,6 +62,14 @@ type name (type1 arg1,type2 arg2,type3 arg3,type4 arg4,type5 arg5) \ return (type) (INLINE_SYSCALL(name, 5, arg1, arg2, arg3, arg4, arg5)); \ } +#undef _syscall6 +#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) \ +{ \ +return (type) (INLINE_SYSCALL(name, 6, arg1, arg2, arg3, arg4, arg5, arg6)); \ +} + #undef INLINE_SYSCALL #define INLINE_SYSCALL(name, nr, args...) \ ({ \ |