summaryrefslogtreecommitdiff
path: root/mul_ui.c
diff options
context:
space:
mode:
authorhanrot <hanrot@280ebfd0-de03-0410-8827-d642c229c3f4>1999-06-14 13:14:43 +0000
committerhanrot <hanrot@280ebfd0-de03-0410-8827-d642c229c3f4>1999-06-14 13:14:43 +0000
commitebe2549006bfafbb1feba2caa7ce72959607107f (patch)
treeafd949688cbea3c96a3e6eb5aa525a9fa4f6d5a1 /mul_ui.c
parent6c6229c84d7bb85b1bf6afc42bb06419f5ef2130 (diff)
downloadmpfr-ebe2549006bfafbb1feba2caa7ce72959607107f.tar.gz
Correction du prototype de mpfr_mul_ui
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@40 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'mul_ui.c')
-rw-r--r--mul_ui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mul_ui.c b/mul_ui.c
index e95db8369..36958a95f 100644
--- a/mul_ui.c
+++ b/mul_ui.c
@@ -5,7 +5,7 @@
#include "mpfr.h"
void
-mpfr_mul_ui(mpfr_ptr y, mpfr_ptr x, unsigned long u, char RND_MODE)
+mpfr_mul_ui(mpfr_ptr y, mpfr_srcptr x, unsigned long u, unsigned char RND_MODE)
/* on suppose SIZ(y)=SIZ(x) */
{
mp_limb_t carry = 0, *my, *old_my; unsigned long c;