comparison src/data.c @ 16150:f388360fb59a

(arith_error) [POSIX_SIGNALS]: Don't reestablish handler.
author Richard M. Stallman <rms@gnu.org>
date Tue, 10 Sep 1996 19:49:35 +0000
parents ccf489f8596e
children e46fcec4629d
comparison
equal deleted inserted replaced
16149:eb953f4baf7b 16150:f388360fb59a
2709 2709
2710 SIGTYPE 2710 SIGTYPE
2711 arith_error (signo) 2711 arith_error (signo)
2712 int signo; 2712 int signo;
2713 { 2713 {
2714 #ifdef USG 2714 #if defined(USG) && !defined(POSIX_SIGNALS)
2715 /* USG systems forget handlers when they are used; 2715 /* USG systems forget handlers when they are used;
2716 must reestablish each time */ 2716 must reestablish each time */
2717 signal (signo, arith_error); 2717 signal (signo, arith_error);
2718 #endif /* USG */ 2718 #endif /* USG */
2719 #ifdef VMS 2719 #ifdef VMS