From fa1213d90bf20067433737abb0f4880e8db349ed Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sun, 7 Jun 2020 16:26:50 -0400 Subject: Replace __dead2 with __attribute__((noreturn)) sed 's/__dead2/__attribute__((noreturn))/' --- bin/1sh/error.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin/1sh/error.c') diff --git a/bin/1sh/error.c b/bin/1sh/error.c index 1cc55ded..62d406f5 100644 --- a/bin/1sh/error.c +++ b/bin/1sh/error.c @@ -67,7 +67,7 @@ volatile sig_atomic_t suppressint; volatile sig_atomic_t intpending; -static void exverror(int, const char *, va_list) __printf0like(2, 0) __dead2; +static void exverror(int, const char *, va_list) __printf0like(2, 0) __attribute__((noreturn)); /* * Called to raise an exception. Since C doesn't include exceptions, we -- cgit 1.4.1