From 5095bb1f47a0c060cd6bf897e63cb5edb5d78d80 Mon Sep 17 00:00:00 2001 From: Intel A80486DX2-66 Date: Sun, 4 Feb 2024 12:05:05 +0300 Subject: [PATCH] C: jokes/brexit.c: remove `_Noreturn` --- c-programming/jokes/brexit.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/c-programming/jokes/brexit.c b/c-programming/jokes/brexit.c index 9e4f25c..85eb965 100644 --- a/c-programming/jokes/brexit.c +++ b/c-programming/jokes/brexit.c @@ -7,10 +7,9 @@ #include -__attribute__((noreturn)) _Noreturn void Brexit(void); +__attribute__((noreturn)) void Brexit(void); __attribute__((noreturn)) -_Noreturn void Brexit(void) { asm volatile ( "movl $0x7F, %%ebx\n\t"