summaryrefslogtreecommitdiff
path: root/src/floatfns.c
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1992-05-01 06:20:46 +0000
committerJim Blandy <jimb@redhat.com>1992-05-01 06:20:46 +0000
commit58dbe9703ad1b598d0e3b45fb917c13f979ee6b6 (patch)
tree4ba1c7bf06cc9b1f84d2148672475cb4caee1659 /src/floatfns.c
parent11d12b00fa218961e9ac962255739401c44aab08 (diff)
downloademacs-58dbe9703ad1b598d0e3b45fb917c13f979ee6b6.tar.gz
*** empty log message ***
Diffstat (limited to 'src/floatfns.c')
-rw-r--r--src/floatfns.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/floatfns.c b/src/floatfns.c
index ed94c9ebafe..c99ba487e71 100644
--- a/src/floatfns.c
+++ b/src/floatfns.c
@@ -509,7 +509,11 @@ float_error (signo)
#ifdef BSD4_1
sigrelse (SIGILL);
#else /* not BSD4_1 */
- sigsetmask (0);
+ {
+ int dummy;
+
+ EMACS_SIGSETMASK (0, dummy);
+ }
#endif /* not BSD4_1 */
#else
/* Must reestablish handler each time it is called. */