summaryrefslogtreecommitdiff
path: root/demos
diff options
context:
space:
mode:
authorTorbjorn Granlund <tege@gmplib.org>2013-11-28 16:50:42 +0100
committerTorbjorn Granlund <tege@gmplib.org>2013-11-28 16:50:42 +0100
commit5e84964c324f36844d7ab53bc556abdad19712c6 (patch)
treefa7d302d8d4cb0c507a646fd9907aee5a9ec6a1b /demos
parent8dc1c7a622ee6b3f2bf0c236a98451ee3be824ff (diff)
downloadgmp-5e84964c324f36844d7ab53bc556abdad19712c6.tar.gz
Collapse copyright years.
Diffstat (limited to 'demos')
-rw-r--r--demos/Makefile.am2
-rw-r--r--demos/calc/Makefile.am2
-rw-r--r--demos/calc/calc.y2
-rw-r--r--demos/calc/calclex.l2
-rw-r--r--demos/expr/Makefile.am2
-rw-r--r--demos/expr/expr-impl.h2
-rw-r--r--demos/expr/expr.c2
-rw-r--r--demos/expr/expr.h2
-rw-r--r--demos/expr/exprf.c2
-rw-r--r--demos/expr/exprfa.c2
-rw-r--r--demos/expr/exprq.c2
-rw-r--r--demos/expr/exprz.c2
-rw-r--r--demos/expr/exprza.c2
-rw-r--r--demos/expr/run-expr.c2
-rw-r--r--demos/expr/t-expr.c2
-rw-r--r--demos/factorize.c3
-rw-r--r--demos/perl/GMP.pm4
-rw-r--r--demos/perl/GMP.xs2
-rw-r--r--demos/perl/GMP/Mpz.pm2
-rw-r--r--demos/perl/test.pl2
-rw-r--r--demos/pexpr.c3
-rw-r--r--demos/qcn.c2
22 files changed, 23 insertions, 25 deletions
diff --git a/demos/Makefile.am b/demos/Makefile.am
index d82e947c8..1c6303d58 100644
--- a/demos/Makefile.am
+++ b/demos/Makefile.am
@@ -1,6 +1,6 @@
## Process this file with automake to generate Makefile.in
-# Copyright 2000, 2001, 2002, 2012 Free Software Foundation, Inc.
+# Copyright 2000-2002, 2012 Free Software Foundation, Inc.
#
# This file is part of the GNU MP Library.
#
diff --git a/demos/calc/Makefile.am b/demos/calc/Makefile.am
index da6490755..3a906d1a4 100644
--- a/demos/calc/Makefile.am
+++ b/demos/calc/Makefile.am
@@ -1,6 +1,6 @@
## Process this file with automake to generate Makefile.in
-# Copyright 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
+# Copyright 2000-2004 Free Software Foundation, Inc.
#
# This file is part of the GNU MP Library.
#
diff --git a/demos/calc/calc.y b/demos/calc/calc.y
index 0f9b1baad..5859c6612 100644
--- a/demos/calc/calc.y
+++ b/demos/calc/calc.y
@@ -1,7 +1,7 @@
%{
/* A simple integer desk calculator using yacc and gmp.
-Copyright 2000, 2001, 2002 Free Software Foundation, Inc.
+Copyright 2000-2002 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/demos/calc/calclex.l b/demos/calc/calclex.l
index 32d4fc23c..ee47ac806 100644
--- a/demos/calc/calclex.l
+++ b/demos/calc/calclex.l
@@ -1,6 +1,6 @@
/* Lexical analyzer for calc program.
-Copyright 2000, 2001, 2002 Free Software Foundation, Inc.
+Copyright 2000-2002 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/demos/expr/Makefile.am b/demos/expr/Makefile.am
index 333cacc49..4b97330a3 100644
--- a/demos/expr/Makefile.am
+++ b/demos/expr/Makefile.am
@@ -1,6 +1,6 @@
## Process this file with automake to generate Makefile.in
-# Copyright 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
+# Copyright 2001-2004 Free Software Foundation, Inc.
#
# This file is part of the GNU MP Library.
#
diff --git a/demos/expr/expr-impl.h b/demos/expr/expr-impl.h
index 84c5bce88..a5c7ab239 100644
--- a/demos/expr/expr-impl.h
+++ b/demos/expr/expr-impl.h
@@ -1,6 +1,6 @@
/* Implementation specifics for expression evaluation.
-Copyright 2000, 2001, 2002, 2004 Free Software Foundation, Inc.
+Copyright 2000-2002, 2004 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/demos/expr/expr.c b/demos/expr/expr.c
index 1f4af6cea..193145b1e 100644
--- a/demos/expr/expr.c
+++ b/demos/expr/expr.c
@@ -1,6 +1,6 @@
/* mpexpr_evaluate -- shared code for simple expression evaluation
-Copyright 2000, 2001, 2002, 2004 Free Software Foundation, Inc.
+Copyright 2000-2002, 2004 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/demos/expr/expr.h b/demos/expr/expr.h
index 0cfda0a33..101e10496 100644
--- a/demos/expr/expr.h
+++ b/demos/expr/expr.h
@@ -1,6 +1,6 @@
/* Header for expression evaluation.
-Copyright 2000, 2001, 2002, 2004 Free Software Foundation, Inc.
+Copyright 2000-2002, 2004 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/demos/expr/exprf.c b/demos/expr/exprf.c
index 98ce83479..3bead8832 100644
--- a/demos/expr/exprf.c
+++ b/demos/expr/exprf.c
@@ -1,6 +1,6 @@
/* mpf expression evaluation
-Copyright 2000, 2001, 2002 Free Software Foundation, Inc.
+Copyright 2000-2002 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/demos/expr/exprfa.c b/demos/expr/exprfa.c
index 4ab294e08..32151a6ca 100644
--- a/demos/expr/exprfa.c
+++ b/demos/expr/exprfa.c
@@ -1,6 +1,6 @@
/* mpf expression evaluation
-Copyright 2000, 2001, 2002, 2004 Free Software Foundation, Inc.
+Copyright 2000-2002, 2004 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/demos/expr/exprq.c b/demos/expr/exprq.c
index a16b2165c..fac95d1c0 100644
--- a/demos/expr/exprq.c
+++ b/demos/expr/exprq.c
@@ -1,6 +1,6 @@
/* mpq expression evaluation
-Copyright 2000, 2001, 2002 Free Software Foundation, Inc.
+Copyright 2000-2002 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/demos/expr/exprz.c b/demos/expr/exprz.c
index 3d4ec6582..d57db719b 100644
--- a/demos/expr/exprz.c
+++ b/demos/expr/exprz.c
@@ -1,6 +1,6 @@
/* mpz expression evaluation, simple part
-Copyright 2000, 2001, 2002 Free Software Foundation, Inc.
+Copyright 2000-2002 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/demos/expr/exprza.c b/demos/expr/exprza.c
index dc5442280..23e18670c 100644
--- a/demos/expr/exprza.c
+++ b/demos/expr/exprza.c
@@ -1,6 +1,6 @@
/* mpz expression evaluation
-Copyright 2000, 2001, 2002, 2004 Free Software Foundation, Inc.
+Copyright 2000-2002, 2004 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/demos/expr/run-expr.c b/demos/expr/run-expr.c
index 169f5a881..afed36405 100644
--- a/demos/expr/run-expr.c
+++ b/demos/expr/run-expr.c
@@ -1,6 +1,6 @@
/* Demo program to run expression evaluation.
-Copyright 2000, 2001, 2002, 2004 Free Software Foundation, Inc.
+Copyright 2000-2002, 2004 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/demos/expr/t-expr.c b/demos/expr/t-expr.c
index 195350e82..fc5037450 100644
--- a/demos/expr/t-expr.c
+++ b/demos/expr/t-expr.c
@@ -1,6 +1,6 @@
/* Test expression evaluation (print nothing and exit 0 if successful).
-Copyright 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
+Copyright 2000-2004 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/demos/factorize.c b/demos/factorize.c
index 9c9c6dbff..1a8cb7898 100644
--- a/demos/factorize.c
+++ b/demos/factorize.c
@@ -1,7 +1,6 @@
/* Factoring with Pollard's rho method.
-Copyright 1995, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2005, 2009, 2012
-Free Software Foundation, Inc.
+Copyright 1995, 1997-2003, 2005, 2009, 2012 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
diff --git a/demos/perl/GMP.pm b/demos/perl/GMP.pm
index 3dc6b32ef..769c90718 100644
--- a/demos/perl/GMP.pm
+++ b/demos/perl/GMP.pm
@@ -1,6 +1,6 @@
# GMP perl module
-# Copyright 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
+# Copyright 2001-2004 Free Software Foundation, Inc.
#
# This file is part of the GNU MP Library.
#
@@ -624,7 +624,7 @@ Some assertion checking is available as a compile-time option.
=head1 COPYRIGHT
-Copyright 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
+Copyright 2001-2004 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/demos/perl/GMP.xs b/demos/perl/GMP.xs
index 2282c8928..a52e950ca 100644
--- a/demos/perl/GMP.xs
+++ b/demos/perl/GMP.xs
@@ -1,6 +1,6 @@
/* GMP module external subroutines.
-Copyright 2001, 2002, 2003 Free Software Foundation, Inc.
+Copyright 2001-2003 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/demos/perl/GMP/Mpz.pm b/demos/perl/GMP/Mpz.pm
index a86d4aba4..805213d58 100644
--- a/demos/perl/GMP/Mpz.pm
+++ b/demos/perl/GMP/Mpz.pm
@@ -1,6 +1,6 @@
# GMP mpz module.
-# Copyright 2001, 2002, 2003 Free Software Foundation, Inc.
+# Copyright 2001-2003 Free Software Foundation, Inc.
#
# This file is part of the GNU MP Library.
#
diff --git a/demos/perl/test.pl b/demos/perl/test.pl
index 40a903378..867d36e94 100644
--- a/demos/perl/test.pl
+++ b/demos/perl/test.pl
@@ -2,7 +2,7 @@
# GMP perl module tests
-# Copyright 2001, 2002, 2003 Free Software Foundation, Inc.
+# Copyright 2001-2003 Free Software Foundation, Inc.
#
# This file is part of the GNU MP Library.
#
diff --git a/demos/pexpr.c b/demos/pexpr.c
index 8ecb634f6..9e3d0a8f0 100644
--- a/demos/pexpr.c
+++ b/demos/pexpr.c
@@ -1,8 +1,7 @@
/* Program for computing integer expressions using the GNU Multiple Precision
Arithmetic Library.
-Copyright 1997, 1999, 2000, 2001, 2002, 2005, 2008, 2012 Free Software
-Foundation, Inc.
+Copyright 1997, 1999-2002, 2005, 2008, 2012 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
diff --git a/demos/qcn.c b/demos/qcn.c
index b0c7e6347..8aa25eb0b 100644
--- a/demos/qcn.c
+++ b/demos/qcn.c
@@ -2,7 +2,7 @@
class number h(d), for a given negative fundamental discriminant, using
Dirichlet's analytic formula.
-Copyright 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
+Copyright 1999-2002 Free Software Foundation, Inc.
This file is part of the GNU MP Library.