X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;ds=sidebyside;f=arch%2Fi386%2Fbits%2Fsyscall.h;fp=arch%2Fi386%2Fbits%2Fsyscall.h;h=519e2dcd2d8e953b6d649ed0684bd36965ebc855;hb=4cc78719dd22a685ddd89b92ac3bfc308c4c19b3;hp=8693ed5ebac4880a804e2ed65d8d992fc823baaf;hpb=117581ca69ec2a9c341390eed353646b47a512df;p=musl diff --git a/arch/i386/bits/syscall.h b/arch/i386/bits/syscall.h index 8693ed5e..519e2dcd 100644 --- a/arch/i386/bits/syscall.h +++ b/arch/i386/bits/syscall.h @@ -6,7 +6,7 @@ static inline long __syscall0(long __n) { unsigned long __ret; __asm__ __volatile__ ("int $128" : "=a"(__ret) : "a"(__n) : "memory"); - return __syscall_ret(__ret); + return __ret; } #ifndef __PIC__