summaryrefslogtreecommitdiff
path: root/demos/expr/exprq.c
diff options
context:
space:
mode:
authorKevin Ryde <user42@zip.com.au>2002-11-04 00:16:13 +0100
committerKevin Ryde <user42@zip.com.au>2002-11-04 00:16:13 +0100
commit69249d0c0731595c7581df216d532acf079196a1 (patch)
treec6d32b8be11ba68edd4a94ce9625d77400b279f0 /demos/expr/exprq.c
parent83047b336d92a2300c882e832bc6960ef88dc312 (diff)
downloadgmp-69249d0c0731595c7581df216d532acf079196a1.tar.gz
* mpbsd/mtox.c, printf/obprintf.c, printf/obvprintf.c,
scanf/vsscanf.c, demos/expr/expr.c, demos/expr/exprf.c, demos/expr/exprfa.c, demos/expr/exprfr.c, demos/expr/exprq.c, demos/expr/exprz.c, demos/expr/exprza.c: Add <string.h> for strlen and memcpy.
Diffstat (limited to 'demos/expr/exprq.c')
-rw-r--r--demos/expr/exprq.c10
1 files changed, 4 insertions, 6 deletions
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"