aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
authorPaul Eggert2012-06-24 10:39:14 -0700
committerPaul Eggert2012-06-24 10:39:14 -0700
commit845ca893904e4664063cb5c121b34925386849f7 (patch)
tree6d9798a0d167f9e6bb5a2a6dae21c83ad9eb9a74 /src/data.c
parent696056c280e0e4a03e12d8d53f692c015ff19217 (diff)
downloademacs-845ca893904e4664063cb5c121b34925386849f7.tar.gz
emacs-845ca893904e4664063cb5c121b34925386849f7.zip
Switch from NO_RETURN to C11's _Noreturn.
Fixes: debbugs:11750
Diffstat (limited to 'src/data.c')
-rw-r--r--src/data.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/data.c b/src/data.c
index ee43b98e6ed..cd4b14a9f9d 100644
--- a/src/data.c
+++ b/src/data.c
@@ -3213,9 +3213,8 @@ syms_of_data (void)
3213} 3213}
3214 3214
3215#ifndef FORWARD_SIGNAL_TO_MAIN_THREAD 3215#ifndef FORWARD_SIGNAL_TO_MAIN_THREAD
3216static void arith_error (int) NO_RETURN; 3216_Noreturn
3217#endif 3217#endif
3218
3219static void 3218static void
3220arith_error (int signo) 3219arith_error (int signo)
3221{ 3220{