From: Todd C. Miller Date: Fri, 19 Nov 2004 17:30:22 +0000 (+0000) Subject: quit() should not be __noreturn__ as it is non-void on some platforms. X-Git-Tag: SUDO_1_7_0~802 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3f9ee04fbbc8d3702acf88e7fc0a71286c01ff22;p=sudo quit() should not be __noreturn__ as it is non-void on some platforms. --- diff --git a/visudo.c b/visudo.c index 6535d88c2..f3fae1ce8 100644 --- a/visudo.c +++ b/visudo.c @@ -96,7 +96,7 @@ struct sudoersfile { /* * Function prototypes */ -static RETSIGTYPE quit __P((int)) __attribute__((__noreturn__)); +static RETSIGTYPE quit __P((int)); static char *get_args __P((char *)); static char *get_editor __P((char **)); static char whatnow __P((void));