comparison src/floatfns.c @ 624:2bb7f23b7ea5

*** empty log message ***
author Jim Blandy <jimb@redhat.com>
date Fri, 01 May 1992 06:20:46 +0000
parents eca8812e61cd
children 40b255f55df3
comparison
equal deleted inserted replaced
623:347a8db13650 624:2bb7f23b7ea5
507 507
508 #ifdef BSD 508 #ifdef BSD
509 #ifdef BSD4_1 509 #ifdef BSD4_1
510 sigrelse (SIGILL); 510 sigrelse (SIGILL);
511 #else /* not BSD4_1 */ 511 #else /* not BSD4_1 */
512 sigsetmask (0); 512 {
513 int dummy;
514
515 EMACS_SIGSETMASK (0, dummy);
516 }
513 #endif /* not BSD4_1 */ 517 #endif /* not BSD4_1 */
514 #else 518 #else
515 /* Must reestablish handler each time it is called. */ 519 /* Must reestablish handler each time it is called. */
516 signal (SIGILL, float_error); 520 signal (SIGILL, float_error);
517 #endif /* BSD */ 521 #endif /* BSD */