diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-11-21 13:49:31 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-11-21 13:49:31 -0500 |
commit | b5e3832f85bd818794b0f5f08a2a0ce31a4bba57 (patch) | |
tree | 1dee11f6251be5ea66f266340b341061d881c36a | |
parent | 65b98213e4a12997a519e34695250d9f3a4d6bc7 (diff) | |
download | musl-b5e3832f85bd818794b0f5f08a2a0ce31a4bba57.tar.gz |
ppc signal/NSIG related fix (warning fix, redefinition)
-rw-r--r-- | arch/powerpc/syscall_arch.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/powerpc/syscall_arch.h b/arch/powerpc/syscall_arch.h index 72e55220..33ede362 100644 --- a/arch/powerpc/syscall_arch.h +++ b/arch/powerpc/syscall_arch.h @@ -3,8 +3,7 @@ ((union { long long ll; long l[2]; }){ .ll = x }).l[1] #define __SYSCALL_LL_O(x) 0, __SYSCALL_LL_E((x)) -#define _NSIG 64 -#define __SYSCALL_SSLEN (_NSIG/8) +#define __SYSCALL_SSLEN 8 long (__syscall)(long, ...); |