aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
authorPaul Eggert <[email protected]>2011-04-16 14:48:36 -0700
committerPaul Eggert <[email protected]>2011-04-16 14:48:36 -0700
commitf97334a26eadb54b94a5fbc6b15329b5de050f16 (patch)
treec2c032284ac9ae1d6c2373ee54de811d8d50e495 /src/data.c
parent4e75f29d3a9eaaaa185d67facb7ba38611045aed (diff)
* data.c (arith_error): Mark with NO_RETURN if it doesn't return.
Diffstat (limited to 'src/data.c')
-rw-r--r--src/data.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/data.c b/src/data.c
index 956ff3700f..c9250a67bf 100644
--- a/src/data.c
+++ b/src/data.c
@@ -3305,6 +3305,10 @@ syms_of_data (void)
XSYMBOL (intern_c_string ("most-negative-fixnum"))->constant = 1;
}
+#ifndef FORWARD_SIGNAL_TO_MAIN_THREAD
+static void arith_error (int) NO_RETURN;
+#endif
+
static void
arith_error (int signo)
{