summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzimmerma <zimmerma@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2009-08-26 11:38:38 +0000
committerzimmerma <zimmerma@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2009-08-26 11:38:38 +0000
commitf91af7bc6941fddfdd8809aed61adfee3fbe87b7 (patch)
tree88254bcd4af99e176cdc941efd5c3f43c9334ad7
parent74756ef67a54ea6caef356c7663939ee8c6f17ad (diff)
downloadmpc-f91af7bc6941fddfdd8809aed61adfee3fbe87b7.tar.gz
removed useless instances of #include <stdio.h>
git-svn-id: svn://scm.gforge.inria.fr/svn/mpc/trunk@663 211d60ee-9f03-0410-a15a-8952a2c7a4e4
-rw-r--r--src/div.c1
-rw-r--r--src/exp.c1
-rw-r--r--src/fr_div.c1
-rw-r--r--src/get_str.c2
-rw-r--r--src/inp_str.c2
-rw-r--r--src/log.c1
-rw-r--r--src/mul.c1
-rw-r--r--src/out_str.c2
-rw-r--r--src/pow.c2
-rw-r--r--src/set_str.c1
-rw-r--r--src/sqr.c1
-rw-r--r--src/sqrt.c1
-rw-r--r--src/strtoc.c1
-rw-r--r--src/tan.c1
14 files changed, 4 insertions, 14 deletions
diff --git a/src/div.c b/src/div.c
index 0d12cef..b3e6ad3 100644
--- a/src/div.c
+++ b/src/div.c
@@ -19,7 +19,6 @@ 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 <stdio.h>
#include "mpc-impl.h"
static int
diff --git a/src/exp.c b/src/exp.c
index 5808ecc..ce73368 100644
--- a/src/exp.c
+++ b/src/exp.c
@@ -19,7 +19,6 @@ 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 <stdio.h>
#include "mpc-impl.h"
int
diff --git a/src/fr_div.c b/src/fr_div.c
index 6de32cb..c15ddf6 100644
--- a/src/fr_div.c
+++ b/src/fr_div.c
@@ -19,7 +19,6 @@ 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 <stdio.h>
#include "mpc-impl.h"
int
diff --git a/src/get_str.c b/src/get_str.c
index dc76b2d..392435d 100644
--- a/src/get_str.c
+++ b/src/get_str.c
@@ -19,7 +19,7 @@ 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 <stdio.h>
+#include <stdio.h> /* for sprintf, fprintf */
#include <ctype.h>
#include <string.h>
#include "mpc-impl.h"
diff --git a/src/inp_str.c b/src/inp_str.c
index 882de60..7adac05 100644
--- a/src/inp_str.c
+++ b/src/inp_str.c
@@ -19,7 +19,7 @@ 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 <stdio.h>
+#include <stdio.h> /* for FILE */
#include <ctype.h>
#include <string.h>
#include "mpc-impl.h"
diff --git a/src/log.c b/src/log.c
index 751966d..96d121b 100644
--- a/src/log.c
+++ b/src/log.c
@@ -19,7 +19,6 @@ 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 <stdio.h>
#include "mpc-impl.h"
int
diff --git a/src/mul.c b/src/mul.c
index b823874..1fc4885 100644
--- a/src/mul.c
+++ b/src/mul.c
@@ -19,7 +19,6 @@ 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 <stdio.h>
#include "mpc-impl.h"
static int mul_infinite (mpc_ptr a, mpc_srcptr u, mpc_srcptr v);
diff --git a/src/out_str.c b/src/out_str.c
index 080130e..dde9783 100644
--- a/src/out_str.c
+++ b/src/out_str.c
@@ -19,7 +19,7 @@ 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 <stdio.h>
+#include <stdio.h> /* for FILE */
#include <ctype.h>
#include "mpc-impl.h"
diff --git a/src/pow.c b/src/pow.c
index 966bcda..4fe1677 100644
--- a/src/pow.c
+++ b/src/pow.c
@@ -19,7 +19,7 @@ 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 <stdio.h>
+#include <stdio.h> /* for MPC_ASSERT */
#include "mpc-impl.h"
/* Return non-zero iff c+i*d is an exact square (a+i*b)^2,
diff --git a/src/set_str.c b/src/set_str.c
index 4dc1d53..83215a4 100644
--- a/src/set_str.c
+++ b/src/set_str.c
@@ -19,7 +19,6 @@ 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 <stdio.h>
#include <ctype.h>
#include "mpc-impl.h"
diff --git a/src/sqr.c b/src/sqr.c
index 3977742..29f91d8 100644
--- a/src/sqr.c
+++ b/src/sqr.c
@@ -19,7 +19,6 @@ 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 <stdio.h>
#include "mpc-impl.h"
int
diff --git a/src/sqrt.c b/src/sqrt.c
index 59424e0..5c0b2f0 100644
--- a/src/sqrt.c
+++ b/src/sqrt.c
@@ -19,7 +19,6 @@ 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 <stdio.h>
#include "mpc-impl.h"
int
diff --git a/src/strtoc.c b/src/strtoc.c
index 3c38025..8b34e9b 100644
--- a/src/strtoc.c
+++ b/src/strtoc.c
@@ -21,7 +21,6 @@ MA 02111-1307, USA. */
#include <string.h>
#include <ctype.h>
-#include <stdio.h>
#include "mpc-impl.h"
static void
diff --git a/src/tan.c b/src/tan.c
index d4e4b14..2154471 100644
--- a/src/tan.c
+++ b/src/tan.c
@@ -19,7 +19,6 @@ 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 <stdio.h>
#include "mpc-impl.h"
int