diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-08-09 21:35:19 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-08-09 21:35:19 -0400 |
commit | 83b42d94bd1009da6a95052d9ef0edeb1c73c8e4 (patch) | |
tree | ce40bd49b43764a54d667906bd5432ba791d3297 /arch/mips/bits | |
parent | b3c4cc121f70faea45389fe7ddc1127ed5cbd8bb (diff) | |
download | musl-83b42d94bd1009da6a95052d9ef0edeb1c73c8e4.tar.gz musl-83b42d94bd1009da6a95052d9ef0edeb1c73c8e4.tar.xz musl-83b42d94bd1009da6a95052d9ef0edeb1c73c8e4.zip |
add defines for number of sigset_t bytes syscalls expect
yet another gratuitous mips incompatibility...
Diffstat (limited to 'arch/mips/bits')
-rw-r--r-- | arch/mips/bits/syscall.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/mips/bits/syscall.h b/arch/mips/bits/syscall.h index 868ce0fe..6c51bab9 100644 --- a/arch/mips/bits/syscall.h +++ b/arch/mips/bits/syscall.h @@ -3,6 +3,8 @@ ((union { long long ll; long l[2]; }){ .ll = x }).l[1] #define __SYSCALL_LL_O(x) 0, __SYSCALL_LL_E((x)) +#define __SYSCALL_SSLEN 16 + long (__syscall)(long, ...); static inline long __syscall0(long n) |