From 845ca893904e4664063cb5c121b34925386849f7 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Sun, 24 Jun 2012 10:39:14 -0700 Subject: Switch from NO_RETURN to C11's _Noreturn. Fixes: debbugs:11750 --- src/unexmacosx.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/unexmacosx.c') diff --git a/src/unexmacosx.c b/src/unexmacosx.c index a61bbd8eb86..47efe41fdd9 100644 --- a/src/unexmacosx.c +++ b/src/unexmacosx.c @@ -197,8 +197,6 @@ static off_t data_segment_old_fileoff = 0; static struct segment_command *data_segment_scp; -static void unexec_error (const char *format, ...) NO_RETURN; - /* Read N bytes from infd into memory starting at address DEST. Return true if successful, false otherwise. */ static int @@ -275,7 +273,7 @@ unexec_copy (off_t dest, off_t src, ssize_t count) /* Debugging and informational messages routines. */ -static void +static _Noreturn void unexec_error (const char *format, ...) { va_list ap; -- cgit v1.2.3