summaryrefslogtreecommitdiff
path: root/tests/ttan.c
diff options
context:
space:
mode:
authorenge <enge@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2011-01-13 17:58:58 +0000
committerenge <enge@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2011-01-13 17:58:58 +0000
commit34903ad51b29b3f9c7b3fa09d47a2f1113793cfe (patch)
treedbb3c514c516e24df5d72d6b881f3e8dd8ab1d31 /tests/ttan.c
parent9f1fcd5b925bac9df49a38200d4a002ad811af35 (diff)
downloadmpc-34903ad51b29b3f9c7b3fa09d47a2f1113793cfe.tar.gz
mpc-impl.h and test files: replaced macro OUT by MPC_OUT
git-svn-id: svn://scm.gforge.inria.fr/svn/mpc/trunk@867 211d60ee-9f03-0410-a15a-8952a2c7a4e4
Diffstat (limited to 'tests/ttan.c')
-rw-r--r--tests/ttan.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/ttan.c b/tests/ttan.c
index 715c403..c67af79 100644
--- a/tests/ttan.c
+++ b/tests/ttan.c
@@ -1,6 +1,6 @@
/* test file for mpc_tan.
-Copyright (C) 2008 Philippe Th\'eveny, Paul Zimmermann, Andreas Enge
+Copyright (C) 2008, 2011 Philippe Th\'eveny, Paul Zimmermann, Andreas Enge
This file is part of the MPC Library.
@@ -26,10 +26,10 @@ static void
test_failed (mpc_t op, mpc_t get, mpc_t expected)
{
printf ("mpc_tan(op) failed\n with ");
- OUT (op);
+ MPC_OUT (op);
printf (" ");
- OUT (get);
- OUT (expected);
+ MPC_OUT (get);
+ MPC_OUT (expected);
exit (1);
}