diff options
author | vlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4> | 2002-04-10 12:13:25 +0000 |
---|---|---|
committer | vlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4> | 2002-04-10 12:13:25 +0000 |
commit | 610a8851990d905908fae318fc91dda3b21ee270 (patch) | |
tree | 69a66b428bab8b1c92dd69410874dcd7089b84ca /tests/tadd_ui.c | |
parent | 11b100b3ef4098c0afc5f5f82a9600077ff89ee9 (diff) | |
download | mpfr-610a8851990d905908fae318fc91dda3b21ee270.tar.gz |
HAVE_FESETROUND renamed to MPFR_HAVE_FESETROUND to avoid possible
name conflict.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@1844 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'tests/tadd_ui.c')
-rw-r--r-- | tests/tadd_ui.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/tadd_ui.c b/tests/tadd_ui.c index 45c9d3eff..dcc2695ab 100644 --- a/tests/tadd_ui.c +++ b/tests/tadd_ui.c @@ -47,7 +47,7 @@ check3 (double x, unsigned long y, unsigned int rnd_mode, double z1) mpfr_init2(zz, 53); mpfr_set_d(xx, x, rnd_mode); mpfr_add_ui(zz, xx, y, rnd_mode); -#ifdef HAVE_FESETROUND +#ifdef MPFR_HAVE_FESETROUND mpfr_set_machine_rnd_mode(rnd_mode); #endif if (z1==0.0) z1 = x+y; @@ -77,7 +77,7 @@ special (void) int main (int argc, char *argv[]) { -#ifdef HAVE_FESETROUND +#ifdef MPFR_HAVE_FESETROUND double x; unsigned long y, N; int i,rnd_mode,rnd; mpfr_test_init (); |