summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mpz/fib_ui.c2
-rw-r--r--mpz/gcd_ui.c2
-rw-r--r--mpz/gcdext.c3
-rw-r--r--mpz/inp_str.c2
-rw-r--r--mpz/invert.c2
-rw-r--r--mpz/ior.c2
-rw-r--r--mpz/perfpow.c2
-rw-r--r--mpz/powm.c2
-rw-r--r--mpz/powm_ui.c2
-rw-r--r--mpz/pprime_p.c4
-rw-r--r--mpz/remove.c2
11 files changed, 13 insertions, 12 deletions
diff --git a/mpz/fib_ui.c b/mpz/fib_ui.c
index 68ba74f4b..cec0e94dc 100644
--- a/mpz/fib_ui.c
+++ b/mpz/fib_ui.c
@@ -1,6 +1,6 @@
/* mpz_fib_ui(result, n) -- Set RESULT to the Nth Fibonacci number.
-Copyright (C) 1998, 1999 Free Software Foundation, Inc.
+Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpz/gcd_ui.c b/mpz/gcd_ui.c
index 701fc39f9..24c47ee47 100644
--- a/mpz/gcd_ui.c
+++ b/mpz/gcd_ui.c
@@ -1,6 +1,6 @@
/* mpz_gcd_ui -- Calculate the greatest common divisior of two integers.
-Copyright (C) 1994, 1996 Free Software Foundation, Inc.
+Copyright (C) 1994, 1996, 1999 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpz/gcdext.c b/mpz/gcdext.c
index 9c032b617..2632dac09 100644
--- a/mpz/gcdext.c
+++ b/mpz/gcdext.c
@@ -1,7 +1,8 @@
/* mpz_gcdext(g, s, t, a, b) -- Set G to gcd(a, b), and S and T such that
g = as + bt.
-Copyright (C) 1991, 1993, 1994, 1995, 1996 Free Software Foundation, Inc.
+Copyright (C) 1991, 1993, 1994, 1995, 1996, 1997 Free Software Foundation,
+Inc.
This file is part of the GNU MP Library.
diff --git a/mpz/inp_str.c b/mpz/inp_str.c
index 76b867f4e..0120cde40 100644
--- a/mpz/inp_str.c
+++ b/mpz/inp_str.c
@@ -1,7 +1,7 @@
/* mpz_inp_str(dest_integer, stream, base) -- Input a number in base
BASE from stdio stream STREAM and store the result in DEST_INTEGER.
-Copyright (C) 1991, 1993, 1994, 1996 Free Software Foundation, Inc.
+Copyright (C) 1991, 1993, 1994, 1996, 1998 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpz/invert.c b/mpz/invert.c
index 90594ad8a..0c0a1c2c8 100644
--- a/mpz/invert.c
+++ b/mpz/invert.c
@@ -2,7 +2,7 @@
If X has an inverse, return non-zero and store inverse in INVERSE,
otherwise, return 0 and put garbage in INVERSE.
-Copyright (C) 1996 Free Software Foundation, Inc.
+Copyright (C) 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpz/ior.c b/mpz/ior.c
index 19bbfff68..f9c98c883 100644
--- a/mpz/ior.c
+++ b/mpz/ior.c
@@ -1,6 +1,6 @@
/* mpz_ior -- Logical inclusive or.
-Copyright (C) 1991, 1993, 1994, 1996 Free Software Foundation, Inc.
+Copyright (C) 1991, 1993, 1994, 1996, 1997 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpz/perfpow.c b/mpz/perfpow.c
index 66f76e22b..62abfaab8 100644
--- a/mpz/perfpow.c
+++ b/mpz/perfpow.c
@@ -1,7 +1,7 @@
/* mpz_perfect_power_p(arg) -- Return non-zero if ARG is a perfect power,
zero otherwise.
-Copyright (C) 1998, 2000 Free Software Foundation, Inc.
+Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpz/powm.c b/mpz/powm.c
index 2a0d4d30b..f596436e2 100644
--- a/mpz/powm.c
+++ b/mpz/powm.c
@@ -1,6 +1,6 @@
/* mpz_powm(res,base,exp,mod) -- Set RES to (base**exp) mod MOD.
-Copyright (C) 1991, 1993, 1994, 1996 Free Software Foundation, Inc.
+Copyright (C) 1991, 1993, 1994, 1996, 1997 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpz/powm_ui.c b/mpz/powm_ui.c
index 282192321..0f5242f40 100644
--- a/mpz/powm_ui.c
+++ b/mpz/powm_ui.c
@@ -1,6 +1,6 @@
/* mpz_powm_ui(res,base,exp,mod) -- Set RES to (base**exp) mod MOD.
-Copyright (C) 1991, 1993, 1994, 1996 Free Software Foundation, Inc.
+Copyright (C) 1991, 1993, 1994, 1996, 1997 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpz/pprime_p.c b/mpz/pprime_p.c
index 30f6c5ec6..035d2e453 100644
--- a/mpz/pprime_p.c
+++ b/mpz/pprime_p.c
@@ -6,8 +6,8 @@
positive is (1/4)**reps, where reps is the number of internal passes of the
probabilistic algorithm. Knuth indicates that 25 passes are reasonable.
-Copyright (C) 1991, 1993, 1994, 1997 Free Software Foundation, Inc.
-Contributed by John Amanatides.
+Copyright (C) 1991, 1993, 1994, 1996, 1997, 1998, 1999, 2000 Free Software
+Foundation, Inc. Contributed by John Amanatides.
This file is part of the GNU MP Library.
diff --git a/mpz/remove.c b/mpz/remove.c
index f5b45e59c..49f866915 100644
--- a/mpz/remove.c
+++ b/mpz/remove.c
@@ -1,6 +1,6 @@
/* mpz_remove -- divide out a factor and return its multiplicity.
-Copyright (C) 1998 Free Software Foundation, Inc.
+Copyright (C) 1998, 1999 Free Software Foundation, Inc.
This file is part of the GNU MP Library.