From 3f9ee04fbbc8d3702acf88e7fc0a71286c01ff22 Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Fri, 19 Nov 2004 17:30:22 +0000 Subject: [PATCH] quit() should not be __noreturn__ as it is non-void on some platforms. --- visudo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); -- 2.50.1