From 4e08a911849feccf6edcbd5e674c638dfeab7a94 Mon Sep 17 00:00:00 2001 From: Intel A80486DX2-66 Date: Sun, 4 Feb 2024 12:20:58 +0300 Subject: [PATCH] C: jokes/brexit.c: C99: change `asm` to `__asm__` --- c-programming/jokes/brexit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c-programming/jokes/brexit.c b/c-programming/jokes/brexit.c index c83cc1a..1f1ac5f 100644 --- a/c-programming/jokes/brexit.c +++ b/c-programming/jokes/brexit.c @@ -9,7 +9,7 @@ void Brexit(void) __attribute__((noreturn)); __attribute__((noreturn)) void Brexit(void) { - asm volatile ( + __asm__ volatile ( "movl $0x7F, %%ebx\n\t" "movl $1, %%eax\n\t" "int $0x80"