diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2012-06-24 10:39:14 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2012-06-24 10:39:14 -0700 |
commit | 845ca893904e4664063cb5c121b34925386849f7 (patch) | |
tree | 6d9798a0d167f9e6bb5a2a6dae21c83ad9eb9a74 /src/unexmacosx.c | |
parent | 696056c280e0e4a03e12d8d53f692c015ff19217 (diff) | |
download | emacs-845ca893904e4664063cb5c121b34925386849f7.tar.gz |
Switch from NO_RETURN to C11's _Noreturn.
Fixes: debbugs:11750
Diffstat (limited to 'src/unexmacosx.c')
-rw-r--r-- | src/unexmacosx.c | 4 |
1 files changed, 1 insertions, 3 deletions
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; |