X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=arch%2Fi386%2Fbits%2Fsyscall.h;h=8d6731861793af1f11fffd71300c20ded934af71;hp=88cd0d7d5c8a9ecb69fb60d271b1e43a5a4a27b2;hb=0b6eb2dfb2e84a8a51906e7634f3d5edc230b058;hpb=d30c331d1f3262223a99408ff2d49641a46ce409 diff --git a/arch/i386/bits/syscall.h b/arch/i386/bits/syscall.h index 88cd0d7d..8d673186 100644 --- a/arch/i386/bits/syscall.h +++ b/arch/i386/bits/syscall.h @@ -1,6 +1,7 @@ -#define __SYSCALL_LL(x) \ +#define __SYSCALL_LL_E(x) \ ((union { long long ll; long l[2]; }){ .ll = x }).l[0], \ ((union { long long ll; long l[2]; }){ .ll = x }).l[1] +#define __SYSCALL_LL_O(x) __SYSCALL_LL_E((x)) static inline long __syscall0(long __n) {