summaryrefslogtreecommitdiff
path: root/mpfr/tests/tsin_cos.c
diff options
context:
space:
mode:
authortege <tege@gmplib.org>2003-06-09 16:37:17 +0200
committertege <tege@gmplib.org>2003-06-09 16:37:17 +0200
commita12702ad6264f020ba55d89724f0a573fe7d95fb (patch)
tree95828c4ff85a33a87d51037388ddbbcca37a714e /mpfr/tests/tsin_cos.c
parente0d69b79fed5b780c3f36566f8c933e34aae312a (diff)
downloadgmp-a12702ad6264f020ba55d89724f0a573fe7d95fb.tar.gz
Work around GNUPro bugs (on alpha):
Change putchar('\n') to puts(""). Arbitrarily (in tset_str.c only) change some char code.
Diffstat (limited to 'mpfr/tests/tsin_cos.c')
-rw-r--r--mpfr/tests/tsin_cos.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mpfr/tests/tsin_cos.c b/mpfr/tests/tsin_cos.c
index e6fd5e6b2..8b4d48a4c 100644
--- a/mpfr/tests/tsin_cos.c
+++ b/mpfr/tests/tsin_cos.c
@@ -39,7 +39,7 @@ large_test (int prec, int N)
mpfr_set_d (x, 3.0, GMP_RNDN);
mpfr_sqrt (x, x, GMP_RNDN);
for (i=0; i<N; i++) mpfr_sin_cos (s, c, x, GMP_RNDN);
- mpfr_out_str (stdout, 10, 0, s, GMP_RNDN); putchar('\n');
+ mpfr_out_str (stdout, 10, 0, s, GMP_RNDN); puts ("");
mpfr_clear (x);
mpfr_clear (s);
mpfr_clear (c);