diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-07-09 15:09:29 -0400 |
---|---|---|
committer | Austin Foxley <austinf@cetoncorp.com> | 2009-07-09 12:36:22 -0700 |
commit | ba82591be10020612165702d4ce64b44edbef034 (patch) | |
tree | 78a740ed73e876e7c7c2e9193638f47bf3112278 /libc/sysdeps/linux/sparc | |
parent | 7f3e726d0ca52b9f3866caabbec8fd10b58154a6 (diff) | |
download | uClibc-alpine-ba82591be10020612165702d4ce64b44edbef034.tar.bz2 uClibc-alpine-ba82591be10020612165702d4ce64b44edbef034.tar.xz |
syscall: unify part 2: NCS variety
Declare common NCS (non-constant syscall) variants and convert the existing
ports over to this.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
Diffstat (limited to 'libc/sysdeps/linux/sparc')
-rw-r--r-- | libc/sysdeps/linux/sparc/bits/syscalls.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libc/sysdeps/linux/sparc/bits/syscalls.h b/libc/sysdeps/linux/sparc/bits/syscalls.h index 55420104b..78f143911 100644 --- a/libc/sysdeps/linux/sparc/bits/syscalls.h +++ b/libc/sysdeps/linux/sparc/bits/syscalls.h @@ -35,11 +35,6 @@ #define DEBUG_SYSCALL(name) do{} while(0) #endif - -#define INTERNAL_SYSCALL( name, err, nr, args...) \ - INTERNAL_SYSCALL_NCS( __NR_##name, err, nr, args ) - - #define INTERNAL_SYSCALL_NCS(sys_num, err, nr, args...) \ ({ \ unsigned int __res; \ |