diff options
Diffstat (limited to 'i686/isr.c')
-rw-r--r-- | i686/isr.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -20,7 +20,7 @@ __attribute__((interrupt)) void syscall_handler(__attribute__((unused)) struct interrupt_frame *frame) { unsigned int n; - asm volatile("mov %%eax, %0" : "=r"(n)); + __asm__("mov %%eax, %0" : "=r"(n)); printf("syscall %x\n, n"); abort(); } |