summaryrefslogtreecommitdiff
path: root/mpn/generic
diff options
context:
space:
mode:
Diffstat (limited to 'mpn/generic')
-rw-r--r--mpn/generic/addsub_n.c2
-rw-r--r--mpn/generic/bdivmod.c3
-rw-r--r--mpn/generic/divmod_1.c2
-rw-r--r--mpn/generic/divrem_1.c2
-rw-r--r--mpn/generic/divrem_1n.c2
-rw-r--r--mpn/generic/divrem_newt.c2
-rw-r--r--mpn/generic/gcd.c3
-rw-r--r--mpn/generic/gcdext.c2
-rw-r--r--mpn/generic/mod_1.c2
-rw-r--r--mpn/generic/mul.c3
-rw-r--r--mpn/generic/mul_basecase.c3
-rw-r--r--mpn/generic/mul_n.c3
-rw-r--r--mpn/generic/perfsqr.c2
-rw-r--r--mpn/generic/random.c2
-rw-r--r--mpn/generic/sqr_basecase.c3
-rw-r--r--mpn/generic/sqrtrem.c3
16 files changed, 23 insertions, 16 deletions
diff --git a/mpn/generic/addsub_n.c b/mpn/generic/addsub_n.c
index 3fb2e8c0f..c9d6c17a7 100644
--- a/mpn/generic/addsub_n.c
+++ b/mpn/generic/addsub_n.c
@@ -1,6 +1,6 @@
/* mpn_addsub_n -- Add and Subtract two limb vectors of equal, non-zero length.
-Copyright (C) 1999 Free Software Foundation, Inc.
+Copyright (C) 1999, 2000 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpn/generic/bdivmod.c b/mpn/generic/bdivmod.c
index 39db1e78d..4bd9887ac 100644
--- a/mpn/generic/bdivmod.c
+++ b/mpn/generic/bdivmod.c
@@ -1,6 +1,7 @@
/* mpn/bdivmod.c: mpn_bdivmod for computing U/V mod 2^d.
-Copyright (C) 1991, 1993, 1994, 1995, 1996 Free Software Foundation, Inc.
+Copyright (C) 1991, 1993, 1994, 1995, 1996, 1999 Free Software Foundation,
+Inc.
This file is part of the GNU MP Library.
diff --git a/mpn/generic/divmod_1.c b/mpn/generic/divmod_1.c
index f04f01289..6df9d2d4b 100644
--- a/mpn/generic/divmod_1.c
+++ b/mpn/generic/divmod_1.c
@@ -6,7 +6,7 @@
QUOT_PTR and DIVIDEND_PTR might point to the same limb.
-Copyright (C) 1991, 1993, 1994, 1996 Free Software Foundation, Inc.
+Copyright (C) 1991, 1993, 1994, 1996, 1999 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpn/generic/divrem_1.c b/mpn/generic/divrem_1.c
index c30e0eb0d..9b494c09e 100644
--- a/mpn/generic/divrem_1.c
+++ b/mpn/generic/divrem_1.c
@@ -6,7 +6,7 @@
QUOT_PTR and DIVIDEND_PTR might point to the same limb.
-Copyright (C) 1996 Free Software Foundation, Inc.
+Copyright (C) 1996, 1998, 1999, 2000 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpn/generic/divrem_1n.c b/mpn/generic/divrem_1n.c
index e786377b6..3c322c141 100644
--- a/mpn/generic/divrem_1n.c
+++ b/mpn/generic/divrem_1n.c
@@ -1,6 +1,6 @@
/* __gmpn_divrem_1n
-Copyright (C) 1996 Free Software Foundation, Inc.
+Copyright (C) 1999, 2000 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpn/generic/divrem_newt.c b/mpn/generic/divrem_newt.c
index a6f32eeac..46645e308 100644
--- a/mpn/generic/divrem_newt.c
+++ b/mpn/generic/divrem_newt.c
@@ -1,6 +1,6 @@
/* Division using Newton's method.
-Copyright (C) 1994, 1997 Free Software Foundation, Inc.
+Copyright (C) 1994, 1997, 1999 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpn/generic/gcd.c b/mpn/generic/gcd.c
index 0db2e3752..93f6076ab 100644
--- a/mpn/generic/gcd.c
+++ b/mpn/generic/gcd.c
@@ -1,6 +1,7 @@
/* mpn/gcd.c: mpn_gcd for gcd of two odd integers.
-Copyright (C) 1991, 1993, 1994, 1995, 1996 Free Software Foundation, Inc.
+Copyright (C) 1991, 1993, 1994, 1995, 1996, 1997, 1998 Free Software
+Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpn/generic/gcdext.c b/mpn/generic/gcdext.c
index 456a80ed7..8c163e578 100644
--- a/mpn/generic/gcdext.c
+++ b/mpn/generic/gcdext.c
@@ -1,6 +1,6 @@
/* mpn_gcdext -- Extended Greatest Common Divisor.
-Copyright (C) 1996 Free Software Foundation, Inc.
+Copyright (C) 1996, 1998 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpn/generic/mod_1.c b/mpn/generic/mod_1.c
index 104893171..394d0e5ad 100644
--- a/mpn/generic/mod_1.c
+++ b/mpn/generic/mod_1.c
@@ -3,7 +3,7 @@
Return the single-limb remainder.
There are no constraints on the value of the divisor.
-Copyright (C) 1991, 1993, 1994, Free Software Foundation, Inc.
+Copyright (C) 1991, 1993, 1994, 1999 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpn/generic/mul.c b/mpn/generic/mul.c
index c53b0dc88..ed41f49cc 100644
--- a/mpn/generic/mul.c
+++ b/mpn/generic/mul.c
@@ -1,6 +1,7 @@
/* mpn_mul -- Multiply two natural numbers.
-Copyright (C) 1991, 1993, 1994, 1996 Free Software Foundation, Inc.
+Copyright (C) 1991, 1993, 1994, 1996, 1997, 1999, 2000 Free Software
+Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpn/generic/mul_basecase.c b/mpn/generic/mul_basecase.c
index 1a453442a..6a8981b2c 100644
--- a/mpn/generic/mul_basecase.c
+++ b/mpn/generic/mul_basecase.c
@@ -1,7 +1,8 @@
/* mpn_mul_basecase -- Internal routine to multiply two natural numbers
of length m and n.
-Copyright (C) 1991, 1992, 1993, 1994, 1996 Free Software Foundation, Inc.
+Copyright (C) 1991, 1992, 1993, 1994, 1996, 1997, 2000 Free Software
+Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpn/generic/mul_n.c b/mpn/generic/mul_n.c
index 745e18e0c..1f4e52403 100644
--- a/mpn/generic/mul_n.c
+++ b/mpn/generic/mul_n.c
@@ -1,6 +1,7 @@
/* mpn_mul_n and helper function -- Multiply/square natural numbers.
-Copyright (C) 1991, 1993, 1994, 1996, 2000 Free Software Foundation, Inc.
+Copyright (C) 1991, 1993, 1994, 1996, 1997, 1998, 1999, 2000 Free Software
+Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpn/generic/perfsqr.c b/mpn/generic/perfsqr.c
index d7d9e6b22..10ed35293 100644
--- a/mpn/generic/perfsqr.c
+++ b/mpn/generic/perfsqr.c
@@ -1,7 +1,7 @@
/* mpn_perfect_square_p(u,usize) -- Return non-zero if U is a perfect square,
zero otherwise.
-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/mpn/generic/random.c b/mpn/generic/random.c
index 7a9ab7755..01c509931 100644
--- a/mpn/generic/random.c
+++ b/mpn/generic/random.c
@@ -1,6 +1,6 @@
/* mpn_random -- Generate random numbers.
-Copyright (C) 1996 Free Software Foundation, Inc.
+Copyright (C) 1996, 1997 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpn/generic/sqr_basecase.c b/mpn/generic/sqr_basecase.c
index 444ec4446..ef04e87b2 100644
--- a/mpn/generic/sqr_basecase.c
+++ b/mpn/generic/sqr_basecase.c
@@ -1,7 +1,8 @@
/* mpn_sqr_basecase -- Internal routine to square two natural numbers
of length m and n.
-Copyright (C) 1991, 1992, 1993, 1994, 1996, 2000 Free Software Foundation, Inc.
+Copyright (C) 1991, 1992, 1993, 1994, 1996, 1997, 2000 Free Software
+Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpn/generic/sqrtrem.c b/mpn/generic/sqrtrem.c
index 1315d6c8c..14cd85a85 100644
--- a/mpn/generic/sqrtrem.c
+++ b/mpn/generic/sqrtrem.c
@@ -12,7 +12,8 @@
the function is 0 if OP is a perfect square, and *any* non-zero number
otherwise.
-Copyright (C) 1993, 1994, 1996 Free Software Foundation, Inc.
+Copyright (C) 1993, 1994, 1996, 1997, 1998, 1999 Free Software Foundation,
+Inc.
This file is part of the GNU MP Library.