aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/floatfns.c2
2 files changed, 7 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 4bf6ae794e2..56b2587172c 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12001-10-12 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
2
3 * floatfns.c: float_error() is defined iff FLOAT_CATCH_SIGILL is
4 defined.
5
12001-10-11 Stefan Monnier <monnier@cs.yale.edu> 62001-10-11 Stefan Monnier <monnier@cs.yale.edu>
2 7
3 * xfns.c (x_create_bitmap_from_file, x_find_image_file): 8 * xfns.c (x_create_bitmap_from_file, x_find_image_file):
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. */