summaryrefslogtreecommitdiff
path: root/mpfr.h
diff options
context:
space:
mode:
authorzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2001-10-15 14:06:46 +0000
committerzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2001-10-15 14:06:46 +0000
commit04bfaa6bd6c5e0aeb35672eda157b52a41ce58e5 (patch)
tree99c5b8720e92298972b1d46dfdf540be2e25cd94 /mpfr.h
parente33bf5f9258735341f75b14eebd75de29d362a1c (diff)
downloadmpfr-04bfaa6bd6c5e0aeb35672eda157b52a41ce58e5.tar.gz
return type is now int for mpfr_mul_2exp and mpfr_div_2exp
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@1254 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'mpfr.h')
-rw-r--r--mpfr.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/mpfr.h b/mpfr.h
index 3e2b650e0..8bcf0d2ca 100644
--- a/mpfr.h
+++ b/mpfr.h
@@ -173,8 +173,8 @@ int mpfr_mul_ui _PROTO((mpfr_ptr, mpfr_srcptr, unsigned long int, mp_rnd_t));
void mpfr_set_machine_rnd_mode _PROTO ((mp_rnd_t));
int mpfr_cmp_ui_2exp _PROTO ((mpfr_srcptr, unsigned long int, int));
int mpfr_cmp_si_2exp _PROTO ((mpfr_srcptr, long int, int));
-void mpfr_mul_2exp _PROTO((mpfr_ptr, mpfr_srcptr, unsigned long int,mp_rnd_t));
-void mpfr_div_2exp _PROTO((mpfr_ptr, mpfr_srcptr, unsigned long int,mp_rnd_t));
+int mpfr_mul_2exp _PROTO((mpfr_ptr, mpfr_srcptr, unsigned long int,mp_rnd_t));
+int mpfr_div_2exp _PROTO((mpfr_ptr, mpfr_srcptr, unsigned long int,mp_rnd_t));
int mpfr_set_prec _PROTO((mpfr_ptr, mp_prec_t));
void mpfr_set_prec_raw _PROTO((mpfr_ptr, mp_prec_t));
void mpfr_set_default_prec _PROTO((mp_prec_t));