summaryrefslogtreecommitdiff
path: root/set_d.c
diff options
context:
space:
mode:
authorhanrot <hanrot@280ebfd0-de03-0410-8827-d642c229c3f4>2000-10-19 08:56:24 +0000
committerhanrot <hanrot@280ebfd0-de03-0410-8827-d642c229c3f4>2000-10-19 08:56:24 +0000
commit571200221e4c617bb30dabc7d69435b8331b12e0 (patch)
tree124a70ef71fd01ee1ee81722e70749305fb17195 /set_d.c
parent253b2b161b5243a556a67e7ccce760ac314a206f (diff)
downloadmpfr-571200221e4c617bb30dabc7d69435b8331b12e0.tar.gz
Correction de prototypes faux dans le cas ou on n'est pas -D__STDC__.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@779 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'set_d.c')
-rw-r--r--set_d.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/set_d.c b/set_d.c
index 7ece46993..c774adb13 100644
--- a/set_d.c
+++ b/set_d.c
@@ -46,7 +46,7 @@ int
#if __STDC__
__mpfr_extract_double (mp_ptr rp, double d, int e)
#else
-__mpfr_extract_double (rp, d)
+__mpfr_extract_double (rp, d, e)
mp_ptr rp;
double d;
int e;