summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--demos/expr/expr.c9
-rw-r--r--demos/expr/exprf.c9
-rw-r--r--demos/expr/exprfa.c6
-rw-r--r--demos/expr/exprfr.c1
-rw-r--r--demos/expr/exprq.c10
-rw-r--r--demos/expr/exprz.c9
-rw-r--r--demos/expr/exprza.c9
-rw-r--r--mpbsd/mtox.c1
-rw-r--r--printf/obprintf.c3
-rw-r--r--printf/obvprintf.c3
-rw-r--r--scanf/vsscanf.c4
11 files changed, 32 insertions, 32 deletions
diff --git a/demos/expr/expr.c b/demos/expr/expr.c
index 8d5c70937..c589176c2 100644
--- a/demos/expr/expr.c
+++ b/demos/expr/expr.c
@@ -1,7 +1,6 @@
-/* mpexpr_evaluate -- shared code for simple expression evaluation */
+/* mpexpr_evaluate -- shared code for simple expression evaluation
-/*
-Copyright 2000, 2001 Free Software Foundation, Inc.
+Copyright 2000, 2001, 2002 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
@@ -18,11 +17,11 @@ License for more details.
You should have received a copy of the GNU Lesser General Public License
along with the GNU MP 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.
-*/
+MA 02111-1307, USA. */
#include <ctype.h>
#include <stdio.h>
+#include <string.h>
#include "gmp.h"
#include "expr-impl.h"
diff --git a/demos/expr/exprf.c b/demos/expr/exprf.c
index d0bf2bd10..59c43c5c7 100644
--- a/demos/expr/exprf.c
+++ b/demos/expr/exprf.c
@@ -1,7 +1,6 @@
-/* mpf expression evaluation */
+/* mpf expression evaluation
-/*
-Copyright 2000, 2001 Free Software Foundation, Inc.
+Copyright 2000, 2001, 2002 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
@@ -18,10 +17,10 @@ License for more details.
You should have received a copy of the GNU Lesser General Public License
along with the GNU MP 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.
-*/
+MA 02111-1307, USA. */
#include <stdio.h>
+#include <string.h>
#include "gmp.h"
#include "expr-impl.h"
diff --git a/demos/expr/exprfa.c b/demos/expr/exprfa.c
index d4d9051cf..c2dde036f 100644
--- a/demos/expr/exprfa.c
+++ b/demos/expr/exprfa.c
@@ -1,7 +1,6 @@
-/* mpf expression evaluation */
+/* mpf expression evaluation
-/*
-Copyright 2000, 2001 Free Software Foundation, Inc.
+Copyright 2000, 2001, 2002 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
@@ -27,6 +26,7 @@ MA 02111-1307, USA.
#include <ctype.h>
#include <stdio.h>
+#include <string.h>
#include "gmp.h"
#include "expr-impl.h"
diff --git a/demos/expr/exprfr.c b/demos/expr/exprfr.c
index 2281cb7c4..89e2a67ee 100644
--- a/demos/expr/exprfr.c
+++ b/demos/expr/exprfr.c
@@ -20,6 +20,7 @@ the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
MA 02111-1307, USA. */
#include <stdio.h>
+#include <string.h>
#include "gmp.h"
#include "expr-impl.h"
diff --git a/demos/expr/exprq.c b/demos/expr/exprq.c
index 5ae8c74e1..2b706f93b 100644
--- a/demos/expr/exprq.c
+++ b/demos/expr/exprq.c
@@ -1,7 +1,6 @@
-/* mpq expression evaluation */
+/* mpq expression evaluation
-/*
-Copyright 2000, 2001 Free Software Foundation, Inc.
+Copyright 2000, 2001, 2002 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
@@ -18,11 +17,10 @@ License for more details.
You should have received a copy of the GNU Lesser General Public License
along with the GNU MP 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.
-*/
-
+MA 02111-1307, USA. */
#include <stdio.h>
+#include <string.h>
#include "gmp.h"
#include "expr-impl.h"
diff --git a/demos/expr/exprz.c b/demos/expr/exprz.c
index 9dcaf23db..d0af1e1fc 100644
--- a/demos/expr/exprz.c
+++ b/demos/expr/exprz.c
@@ -1,7 +1,6 @@
-/* mpz expression evaluation, simple part */
+/* mpz expression evaluation, simple part
-/*
-Copyright 2000, 2001 Free Software Foundation, Inc.
+Copyright 2000, 2001, 2002 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
@@ -18,11 +17,11 @@ License for more details.
You should have received a copy of the GNU Lesser General Public License
along with the GNU MP 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.
-*/
+MA 02111-1307, USA. */
#include <ctype.h>
#include <stdio.h>
+#include <string.h>
#include "gmp.h"
#include "expr-impl.h"
diff --git a/demos/expr/exprza.c b/demos/expr/exprza.c
index 2bf1003c8..51ffb2c6a 100644
--- a/demos/expr/exprza.c
+++ b/demos/expr/exprza.c
@@ -1,7 +1,6 @@
-/* mpz expression evaluation */
+/* mpz expression evaluation
-/*
-Copyright 2000, 2001 Free Software Foundation, Inc.
+Copyright 2000, 2001, 2002 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
@@ -18,11 +17,11 @@ License for more details.
You should have received a copy of the GNU Lesser General Public License
along with the GNU MP 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.
-*/
+MA 02111-1307, USA. */
#include <ctype.h>
#include <stdio.h>
+#include <string.h>
#include "gmp.h"
#include "expr-impl.h"
diff --git a/mpbsd/mtox.c b/mpbsd/mtox.c
index f4df5b606..7de370ff7 100644
--- a/mpbsd/mtox.c
+++ b/mpbsd/mtox.c
@@ -20,6 +20,7 @@ along with the GNU MP 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 <string.h>
#include "mp.h"
#include "gmp.h"
#include "gmp-impl.h"
diff --git a/printf/obprintf.c b/printf/obprintf.c
index 782c8d430..bf91776d5 100644
--- a/printf/obprintf.c
+++ b/printf/obprintf.c
@@ -1,6 +1,6 @@
/* gmp_obstack_printf -- formatted output to an obstack.
-Copyright 2001 Free Software Foundation, Inc.
+Copyright 2001, 2002 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
@@ -30,6 +30,7 @@ MA 02111-1307, USA. */
#endif
#include <obstack.h>
+#include <string.h>
#include "gmp.h"
#include "gmp-impl.h"
diff --git a/printf/obvprintf.c b/printf/obvprintf.c
index 81b8c83a3..78f4028a7 100644
--- a/printf/obvprintf.c
+++ b/printf/obvprintf.c
@@ -1,6 +1,6 @@
/* gmp_obstack_vprintf -- formatted output to an obstack.
-Copyright 2001 Free Software Foundation, Inc.
+Copyright 2001, 2002 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
@@ -30,6 +30,7 @@ MA 02111-1307, USA. */
#endif
#include <obstack.h>
+#include <string.h>
#include "gmp.h"
#include "gmp-impl.h"
diff --git a/scanf/vsscanf.c b/scanf/vsscanf.c
index 62e378004..cba27d17a 100644
--- a/scanf/vsscanf.c
+++ b/scanf/vsscanf.c
@@ -1,6 +1,6 @@
/* gmp_vsscanf -- formatted input from a string.
-Copyright 2001 Free Software Foundation, Inc.
+Copyright 2001, 2002 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
@@ -27,6 +27,8 @@ MA 02111-1307, USA. */
#include <varargs.h>
#endif
+#include <string.h>
+
#include "gmp.h"
#include "gmp-impl.h"