diff options
| author | Paul Eggert | 2012-06-24 10:39:14 -0700 |
|---|---|---|
| committer | Paul Eggert | 2012-06-24 10:39:14 -0700 |
| commit | 845ca893904e4664063cb5c121b34925386849f7 (patch) | |
| tree | 6d9798a0d167f9e6bb5a2a6dae21c83ad9eb9a74 /src/process.c | |
| parent | 696056c280e0e4a03e12d8d53f692c015ff19217 (diff) | |
| download | emacs-845ca893904e4664063cb5c121b34925386849f7.tar.gz emacs-845ca893904e4664063cb5c121b34925386849f7.zip | |
Switch from NO_RETURN to C11's _Noreturn.
Fixes: debbugs:11750
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c index 457a1a9c7ea..aaf8693a62c 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -5372,7 +5372,7 @@ static jmp_buf send_process_frame; | |||
| 5372 | static Lisp_Object process_sent_to; | 5372 | static Lisp_Object process_sent_to; |
| 5373 | 5373 | ||
| 5374 | #ifndef FORWARD_SIGNAL_TO_MAIN_THREAD | 5374 | #ifndef FORWARD_SIGNAL_TO_MAIN_THREAD |
| 5375 | static void send_process_trap (int) NO_RETURN; | 5375 | static _Noreturn void send_process_trap (int); |
| 5376 | #endif | 5376 | #endif |
| 5377 | 5377 | ||
| 5378 | static void | 5378 | static void |