summaryrefslogtreecommitdiff
path: root/print_raw.c
diff options
context:
space:
mode:
authorpelissip <pelissip@280ebfd0-de03-0410-8827-d642c229c3f4>2004-01-07 14:04:30 +0000
committerpelissip <pelissip@280ebfd0-de03-0410-8827-d642c229c3f4>2004-01-07 14:04:30 +0000
commita2956d8a670ae6d7b1ac453feb2decfba36ffeea (patch)
treef17c6845f838ff20cb23c580644856b184f3b6fc /print_raw.c
parent5880cff91d98150929014693d2e2d0bf47871874 (diff)
downloadmpfr-a2956d8a670ae6d7b1ac453feb2decfba36ffeea.tar.gz
Change output format of mpfr_print_mant_binary.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@2601 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'print_raw.c')
-rw-r--r--print_raw.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/print_raw.c b/print_raw.c
index 2292c228d..1da187105 100644
--- a/print_raw.c
+++ b/print_raw.c
@@ -1,7 +1,7 @@
/* mpfr_print_binary -- print the internal binary representation of a
floating-point number
-Copyright 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
+Copyright 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
This file is part of the MPFR Library.
@@ -93,6 +93,7 @@ mpfr_print_mant_binary(const char *str, const mp_limb_t *p, mp_prec_t r)
if (count == r)
putchar('[');
}
+ putchar('.');
}
putchar('\n');
}