comparison src/data.c @ 15686:eb312ef89034

(arith_error): Don't reinstall sig handler if POSIX_SIGNALS.
author Karl Heuer <kwzh@gnu.org>
date Mon, 15 Jul 1996 21:36:19 +0000
parents bf3ee2ec5068
children 7955341c2d19
comparison
equal deleted inserted replaced
15685:d9507895274a 15686:eb312ef89034
2712 2712
2713 SIGTYPE 2713 SIGTYPE
2714 arith_error (signo) 2714 arith_error (signo)
2715 int signo; 2715 int signo;
2716 { 2716 {
2717 #ifdef USG 2717 #if defined(USG) && !defined(POSIX_SIGNALS)
2718 /* USG systems forget handlers when they are used; 2718 /* USG systems forget handlers when they are used;
2719 must reestablish each time */ 2719 must reestablish each time */
2720 signal (signo, arith_error); 2720 signal (signo, arith_error);
2721 #endif /* USG */ 2721 #endif /* USG */
2722 #ifdef VMS 2722 #ifdef VMS