diff options
Diffstat (limited to 'libc/sysdeps/linux/i386/bits')
| -rw-r--r-- | libc/sysdeps/linux/i386/bits/syscalls.h | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/i386/bits/syscalls.h b/libc/sysdeps/linux/i386/bits/syscalls.h index 6ad3b1dd9..a69c4a669 100644 --- a/libc/sysdeps/linux/i386/bits/syscalls.h +++ b/libc/sysdeps/linux/i386/bits/syscalls.h @@ -20,7 +20,7 @@  /* We need some help from the assembler to generate optimal code.  We     define some macros here which later will be used.  */ -asm (".L__X'%ebx = 1\n\t" +__asm__ (".L__X'%ebx = 1\n\t"       ".L__X'%ecx = 2\n\t"       ".L__X'%edx = 2\n\t"       ".L__X'%eax = 3\n\t" @@ -112,7 +112,7 @@ return (type) (INLINE_SYSCALL(name, 6, arg1, arg2, arg3, arg4, arg5, arg6)); \  #define INLINE_SYSCALL(name, nr, args...) \    ({									      \      unsigned int resultvar;						      \ -    asm volatile (							      \ +    __asm__ __volatile__ (							      \      LOADARGS_##nr							      \      "movl %1, %%eax\n\t"						      \      "int $0x80\n\t"							      \  | 
