diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-07-03 19:54:47 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-07-03 19:54:47 +0200 |
commit | 0550ecce0e6580c5ad34e9a9a39ff18ccf8774f9 (patch) | |
tree | 9cda60962bf2af247ee25a11e746fd618168bd84 /libc/sysdeps/linux/arm/bits | |
parent | aebdbb727362a92437b772e5d749d6650e5b823f (diff) |
arm: cleanup redundant macros for syscalls
In uClibc-ng the syscall macros are in bits/syscalls.h.
Diffstat (limited to 'libc/sysdeps/linux/arm/bits')
-rw-r--r-- | libc/sysdeps/linux/arm/bits/syscalls.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/arm/bits/syscalls.h b/libc/sysdeps/linux/arm/bits/syscalls.h index e447a7b2d..5b305640f 100644 --- a/libc/sysdeps/linux/arm/bits/syscalls.h +++ b/libc/sysdeps/linux/arm/bits/syscalls.h @@ -83,6 +83,10 @@ } \ (int) __internal_sys_result; }) \ ) + +#undef INTERNAL_SYSCALL_ARM +#define INTERNAL_SYSCALL_ARM(name, err, nr, args...) \ + INTERNAL_SYSCALL_NCS(__ARM_NR_##name, err, nr, args) #endif #define INTERNAL_SYSCALL_ERROR_P(val, err) \ |