summaryrefslogtreecommitdiff
path: root/tests/mpc-tests.h
diff options
context:
space:
mode:
authorzimmerma <zimmerma@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2009-10-12 11:24:31 +0000
committerzimmerma <zimmerma@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2009-10-12 11:24:31 +0000
commit7775a916a6c517ed0c186cd2c31f7dcc1bcaeaba (patch)
tree59cc4aead76977520d2241bf085f392760adc22f /tests/mpc-tests.h
parent7cff692f187bdd76bed858c92ce40825b18e884d (diff)
downloadmpc-7775a916a6c517ed0c186cd2c31f7dcc1bcaeaba.tar.gz
[mpc-tests.h] added macro to prevent multiple inclusion (useful for the Visual
Studio build) git-svn-id: svn://scm.gforge.inria.fr/svn/mpc/trunk@703 211d60ee-9f03-0410-a15a-8952a2c7a4e4
Diffstat (limited to 'tests/mpc-tests.h')
-rw-r--r--tests/mpc-tests.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/mpc-tests.h b/tests/mpc-tests.h
index 2fe9e32..d436df9 100644
--- a/tests/mpc-tests.h
+++ b/tests/mpc-tests.h
@@ -19,6 +19,9 @@ along with the MPC Library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
MA 02111-1307, USA. */
+#ifndef MPC_TESTS_H
+#define MPC_TESTS_H
+
#include <stdio.h>
#include <ctype.h>
@@ -187,3 +190,5 @@ void read_mpc (FILE *fp, mpc_ptr z, known_signs_t *ks);
/* special value to indicate that the ternary value is not checked */
#define TERNARY_ERROR 254
/* special value to indicate that an error occurred in an mpc function */
+
+#endif /* MPC_TESTS_H */