From 3177ae700a2ba82ef2282ddc5404d8de8646cd57 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Sun, 7 Jun 2020 16:26:50 -0400 Subject: Replace __dead2 with __attribute__((noreturn)) sed 's/__dead2/__attribute__((noreturn))/' --- bin/1sh/trap.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin/1sh/trap.h') diff --git a/bin/1sh/trap.h b/bin/1sh/trap.h index 88076fc2..75427d56 100644 --- a/bin/1sh/trap.h +++ b/bin/1sh/trap.h @@ -46,5 +46,5 @@ int issigchldtrapped(void); void onsig(int); void dotrap(void); void setinteractive(void); -void exitshell(int) __dead2; -void exitshell_savedstatus(void) __dead2; +void exitshell(int) __attribute__((noreturn)); +void exitshell_savedstatus(void) __attribute__((noreturn)); -- cgit 1.4.1