From 311346bb318b33822a0c3db4e7509780a5ad092f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Pavel=20Jan=C3=ADk?= Date: Fri, 12 Oct 2001 06:08:01 +0000 Subject: [PATCH] float_error() is defined iff FLOAT_CATCH_SIGILL is defined. --- src/ChangeLog | 5 +++++ src/floatfns.c | 2 ++ 2 files changed, 7 insertions(+) diff --git a/src/ChangeLog b/src/ChangeLog index 4bf6ae794e2..56b2587172c 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2001-10-12 Pavel Jan,Bm(Bk + + * floatfns.c: float_error() is defined iff FLOAT_CATCH_SIGILL is + defined. + 2001-10-11 Stefan Monnier * 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; #define sinh(x) ((exp(x)-exp(-x))*0.5) #endif /* VMS */ +#ifdef FLOAT_CATCH_SIGILL static SIGTYPE float_error (); +#endif /* Nonzero while executing in floating point. This tells float_error what to do. */ -- 2.39.2