quit() should not be __noreturn__ as it is non-void on some platforms.

This commit is contained in:
Todd C. Miller
2004-11-19 17:30:22 +00:00
parent a414762c4e
commit 3f9ee04fbb

View File

@@ -96,7 +96,7 @@ struct sudoersfile {
/* /*
* Function prototypes * Function prototypes
*/ */
static RETSIGTYPE quit __P((int)) __attribute__((__noreturn__)); static RETSIGTYPE quit __P((int));
static char *get_args __P((char *)); static char *get_args __P((char *));
static char *get_editor __P((char **)); static char *get_editor __P((char **));
static char whatnow __P((void)); static char whatnow __P((void));