From 07de755cffd6966a3a400a926c24e50233aae517 Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Thu, 24 Mar 2011 01:32:14 +0100 Subject: getconf.c: fix noreturn warnings Signed-off-by: Peter S. Mazinger Signed-off-by: Bernhard Reutner-Fischer --- utils/getconf.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'utils') diff --git a/utils/getconf.c b/utils/getconf.c index 0b2a5aa28..4c058a080 100644 --- a/utils/getconf.c +++ b/utils/getconf.c @@ -16,6 +16,7 @@ Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #define _GNU_SOURCE 1 +#include "porting.h" #include #include #include @@ -1058,7 +1059,7 @@ extern const char *__progname; #define __progname "foo" #endif -static void +static attribute_noreturn void usage (void) { fprintf (stderr, @@ -1070,7 +1071,7 @@ usage (void) } -static void +static attribute_noreturn void print_all (const char *path) { register const struct conf *c; -- cgit v1.2.3