diff options
author | vlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4> | 2001-09-11 13:16:51 +0000 |
---|---|---|
committer | vlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4> | 2001-09-11 13:16:51 +0000 |
commit | a37e538fee7b50fa63221fce1b3a3499c78b18d4 (patch) | |
tree | d43bcfc490cf494197bd2626210cf1c49d1546cd /mpfr-impl.h | |
parent | 3ebba522c3a4e2e338e318a6315bd2c62947859e (diff) | |
download | mpfr-a37e538fee7b50fa63221fce1b3a3499c78b18d4.tar.gz |
Inexact ternary value and flag for mpfr_set_underflow, mpfr_set_overflow
and mpfr_check_range.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@1193 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'mpfr-impl.h')
-rw-r--r-- | mpfr-impl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mpfr-impl.h b/mpfr-impl.h index 1e79afcd9..759c4a9fb 100644 --- a/mpfr-impl.h +++ b/mpfr-impl.h @@ -111,8 +111,8 @@ typedef union ieee_double_extract Ieee_double_extract; extern "C" { #endif -void mpfr_set_underflow _PROTO ((mpfr_ptr, mp_rnd_t, int)); -void mpfr_set_overflow _PROTO ((mpfr_ptr, mp_rnd_t, int)); +int mpfr_set_underflow _PROTO ((mpfr_ptr, mp_rnd_t, int)); +int mpfr_set_overflow _PROTO ((mpfr_ptr, mp_rnd_t, int)); void mpfr_save_emin_emax _PROTO ((void)); void mpfr_restore_emin_emax _PROTO ((void)); |