summaryrefslogtreecommitdiff
path: root/init2.c
diff options
context:
space:
mode:
authorzimmerma <zimmerma@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2003-01-16 09:54:54 +0000
committerzimmerma <zimmerma@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2003-01-16 09:54:54 +0000
commitd8857148e690936e54f1fbc8d0193a8ee0d4dcc1 (patch)
tree691cbfe393b09240bcedcb8df55ae19df1528bfd /init2.c
parenta9117d598d31cf572d78f9d8a060df82647522fc (diff)
downloadmpc-d8857148e690936e54f1fbc8d0193a8ee0d4dcc1.tar.gz
Initial revision
git-svn-id: svn://scm.gforge.inria.fr/svn/mpc/trunk@2 211d60ee-9f03-0410-a15a-8952a2c7a4e4
Diffstat (limited to 'init2.c')
-rw-r--r--init2.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/init2.c b/init2.c
new file mode 100644
index 0000000..304a8a2
--- /dev/null
+++ b/init2.c
@@ -0,0 +1,31 @@
+/* mpc_init2 -- Initialize a complex variable with a given precision.
+
+Copyright (C) 2002 Andreas Enge, Paul Zimmermann
+
+This file is part of the MPC Library.
+
+The MPC Library is free software; you can redistribute it and/or modify
+it under the terms of the GNU Lesser General Public License as published by
+the Free Software Foundation; either version 2.1 of the License, or (at your
+option) any later version.
+
+The MPC Library is distributed in the hope that it will be useful, but
+WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+License for more details.
+
+You should have received a copy of the GNU Lesser General Public License
+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. */
+
+#include "gmp.h"
+#include "mpfr.h"
+#include "mpc.h"
+
+void
+mpc_init2 (mpc_t x, mp_prec_t prec)
+{
+ mpfr_init2 (MPC_RE(x), prec);
+ mpfr_init2 (MPC_IM(x), prec);
+}