From 2fd1c3ad4b80d30772eb6858af45f462c35e03c6 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Mon, 15 Jul 1996 21:36:19 +0000 Subject: [PATCH] (arith_error): Don't reinstall sig handler if POSIX_SIGNALS. --- src/data.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data.c b/src/data.c index 88ed31a14bb..96a713daf98 100644 --- a/src/data.c +++ b/src/data.c @@ -2714,7 +2714,7 @@ SIGTYPE arith_error (signo) int signo; { -#ifdef USG +#if defined(USG) && !defined(POSIX_SIGNALS) /* USG systems forget handlers when they are used; must reestablish each time */ signal (signo, arith_error); -- 2.39.5