From 6d7d71118b05dac6c40766a2d2334e7c1d5ad02b Mon Sep 17 00:00:00 2001 From: thevenyp Date: Tue, 10 Jun 2008 14:18:37 +0000 Subject: Change #include to #include 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 --- tests/mpf_compat.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tests/mpf_compat.h') diff --git a/tests/mpf_compat.h b/tests/mpf_compat.h index cccbb1941..d26bf5f62 100644 --- a/tests/mpf_compat.h +++ b/tests/mpf_compat.h @@ -20,7 +20,11 @@ along with the MPFR Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ +#if defined (__cplusplus) +#include +#else #include +#endif #include #include -- cgit v1.2.1