aboutsummaryrefslogtreecommitdiffstats
path: root/src/floatfns.c
diff options
context:
space:
mode:
authorPavel Janík2001-10-12 06:08:01 +0000
committerPavel Janík2001-10-12 06:08:01 +0000
commit311346bb318b33822a0c3db4e7509780a5ad092f (patch)
tree4675a0c39ef6d9496997c9c68381960257eaf8e6 /src/floatfns.c
parent01e85d6147700e32a642ef98ca674ed844e91e88 (diff)
downloademacs-311346bb318b33822a0c3db4e7509780a5ad092f.tar.gz
emacs-311346bb318b33822a0c3db4e7509780a5ad092f.zip
float_error() is defined iff FLOAT_CATCH_SIGILL is defined.
Diffstat (limited to 'src/floatfns.c')
-rw-r--r--src/floatfns.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/floatfns.c b/src/floatfns.c
index 926235f5fe2..f8a3e6f369d 100644
--- a/src/floatfns.c
+++ b/src/floatfns.c
@@ -122,7 +122,9 @@ extern int errno;
122#define sinh(x) ((exp(x)-exp(-x))*0.5) 122#define sinh(x) ((exp(x)-exp(-x))*0.5)
123#endif /* VMS */ 123#endif /* VMS */
124 124
125#ifdef FLOAT_CATCH_SIGILL
125static SIGTYPE float_error (); 126static SIGTYPE float_error ();
127#endif
126 128
127/* Nonzero while executing in floating point. 129/* Nonzero while executing in floating point.
128 This tells float_error what to do. */ 130 This tells float_error what to do. */