summaryrefslogtreecommitdiff
path: root/mpfr-impl.h
diff options
context:
space:
mode:
authorthevenyp <thevenyp@280ebfd0-de03-0410-8827-d642c229c3f4>2008-06-10 14:18:37 +0000
committerthevenyp <thevenyp@280ebfd0-de03-0410-8827-d642c229c3f4>2008-06-10 14:18:37 +0000
commit6d7d71118b05dac6c40766a2d2334e7c1d5ad02b (patch)
tree267bc853602fb5e583e5a9afa53183de959907ce /mpfr-impl.h
parentbb13b553727db6a5874547c74a24b14f30658999 (diff)
downloadmpfr-6d7d71118b05dac6c40766a2d2334e7c1d5ad02b.tar.gz
Change #include <stdio.h> to #include <cstdio> when compiled with a C++ compiler.
Assume that mpfr_rnd_t and wchar_t arguments in a variadic functions are converted to 'int' by C++ compilers. git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@5389 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'mpfr-impl.h')
-rw-r--r--mpfr-impl.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/mpfr-impl.h b/mpfr-impl.h
index 7ca2d9717..a00363287 100644
--- a/mpfr-impl.h
+++ b/mpfr-impl.h
@@ -31,7 +31,11 @@ MA 02110-1301, USA. */
(which is very unlikely and probably means something broken in
this source file), we should do that with some macro (that would
also force to disable incompatible features). */
+#if defined (__cplusplus)
+#include <cstdio>
+#else
#include <stdio.h>
+#endif
#include <limits.h>
/* Check if we are inside a build of MPFR or inside the test suite.