From 2dd68568684236b4d641bd635841e683023b76de Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Mon, 22 Jul 2002 13:13:54 +0000 Subject: [PATCH] Avoid compilation error on platforms without INTDIV0_RAISES_SIGFPE. --- src/ChangeLog | 4 ++++ src/plural-eval.c | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/src/ChangeLog b/src/ChangeLog index 6f45c26f8..48d0fca84 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2002-07-20 Andreas Schwab + + * plural-eval.c: Include if !INTDIV0_RAISES_SIGFPE. + 2002-07-17 Bruno Haible * gettext-0.11.3 released. diff --git a/src/plural-eval.c b/src/plural-eval.c index ddf2699bf..7344f7351 100644 --- a/src/plural-eval.c +++ b/src/plural-eval.c @@ -20,6 +20,10 @@ # include #endif +#if !INTDIV0_RAISES_SIGFPE +# include +#endif + #include "plural-exp.h" #define STATIC /*extern*/ -- 2.47.2