diff options
author | hanrot <hanrot@280ebfd0-de03-0410-8827-d642c229c3f4> | 1999-06-14 13:14:43 +0000 |
---|---|---|
committer | hanrot <hanrot@280ebfd0-de03-0410-8827-d642c229c3f4> | 1999-06-14 13:14:43 +0000 |
commit | ebe2549006bfafbb1feba2caa7ce72959607107f (patch) | |
tree | afd949688cbea3c96a3e6eb5aa525a9fa4f6d5a1 /mul_ui.c | |
parent | 6c6229c84d7bb85b1bf6afc42bb06419f5ef2130 (diff) | |
download | mpfr-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |