summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortege <tege@gmplib.org>2001-01-02 09:51:16 +0100
committertege <tege@gmplib.org>2001-01-02 09:51:16 +0100
commit9cc3e2f11acb1d339c0f5fb62d1083459fa24144 (patch)
treef387d9f0f3bc928828c2177cb26a9928a16bd3ac
parent885b7d9155acfc9524f34140b3da691b5bf1b31d (diff)
downloadgmp-9cc3e2f11acb1d339c0f5fb62d1083459fa24144.tar.gz
Add a copyright year.
-rw-r--r--mpf/abs.c2
-rw-r--r--mpf/add.c2
-rw-r--r--mpf/add_ui.c2
-rw-r--r--mpf/clear.c2
-rw-r--r--mpf/cmp.c2
-rw-r--r--mpf/cmp_si.c2
-rw-r--r--mpf/cmp_ui.c2
-rw-r--r--mpf/div.c2
-rw-r--r--mpf/div_2exp.c2
-rw-r--r--mpf/div_ui.c2
-rw-r--r--mpf/dump.c2
-rw-r--r--mpf/eq.c2
-rw-r--r--mpf/get_d.c2
-rw-r--r--mpf/get_prc.c2
-rw-r--r--mpf/get_str.c2
-rw-r--r--mpf/init.c2
-rw-r--r--mpf/init2.c2
-rw-r--r--mpf/inp_str.c2
-rw-r--r--mpf/integer.c2
-rw-r--r--mpf/iset.c2
-rw-r--r--mpf/iset_d.c2
-rw-r--r--mpf/iset_si.c2
-rw-r--r--mpf/iset_str.c2
-rw-r--r--mpf/iset_ui.c2
-rw-r--r--mpf/mul.c2
-rw-r--r--mpf/mul_2exp.c2
-rw-r--r--mpf/mul_ui.c2
-rw-r--r--mpf/neg.c2
-rw-r--r--mpf/out_str.c2
-rw-r--r--mpf/pow_ui.c2
-rw-r--r--mpf/random2.c2
-rw-r--r--mpf/reldiff.c2
-rw-r--r--mpf/set.c2
-rw-r--r--mpf/set_d.c2
-rw-r--r--mpf/set_dfl_prec.c2
-rw-r--r--mpf/set_prc.c2
-rw-r--r--mpf/set_prc_raw.c2
-rw-r--r--mpf/set_q.c2
-rw-r--r--mpf/set_si.c2
-rw-r--r--mpf/set_str.c2
-rw-r--r--mpf/set_ui.c2
-rw-r--r--mpf/set_z.c2
-rw-r--r--mpf/size.c2
-rw-r--r--mpf/sqrt.c2
-rw-r--r--mpf/sqrt_ui.c2
-rw-r--r--mpf/sub.c2
-rw-r--r--mpf/sub_ui.c2
-rw-r--r--mpf/swap.c2
-rw-r--r--mpf/tests/ref.c2
-rw-r--r--mpf/tests/reuse.c2
-rw-r--r--mpf/tests/t-add.c2
-rw-r--r--mpf/tests/t-conv.c2
-rw-r--r--mpf/tests/t-dm2exp.c2
-rw-r--r--mpf/tests/t-get_d.c2
-rw-r--r--mpf/tests/t-muldiv.c2
-rw-r--r--mpf/tests/t-sqrt.c2
-rw-r--r--mpf/tests/t-sub.c2
-rw-r--r--mpf/ui_div.c2
-rw-r--r--mpf/ui_sub.c2
-rw-r--r--mpf/urandomb.c2
-rw-r--r--mpq/canonicalize.c2
-rw-r--r--mpq/clear.c2
-rw-r--r--mpq/cmp.c2
-rw-r--r--mpq/cmp_ui.c2
-rw-r--r--mpq/div.c2
-rw-r--r--mpq/equal.c2
-rw-r--r--mpq/get_d.c2
-rw-r--r--mpq/get_den.c2
-rw-r--r--mpq/get_num.c2
-rw-r--r--mpq/init.c2
-rw-r--r--mpq/inv.c2
-rw-r--r--mpq/mul.c2
-rw-r--r--mpq/out_str.c2
-rw-r--r--mpq/set.c2
-rw-r--r--mpq/set_den.c2
-rw-r--r--mpq/set_num.c2
-rw-r--r--mpq/set_si.c2
-rw-r--r--mpq/set_ui.c2
-rw-r--r--mpq/set_z.c2
-rw-r--r--mpq/swap.c2
80 files changed, 80 insertions, 80 deletions
diff --git a/mpf/abs.c b/mpf/abs.c
index 724c9a2cf..7d6d65982 100644
--- a/mpf/abs.c
+++ b/mpf/abs.c
@@ -1,6 +1,6 @@
/* mpf_abs -- Compute the absolute value of a float.
-Copyright 1993, 1994, 1995 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1995, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/add.c b/mpf/add.c
index f78af563c..fe7049178 100644
--- a/mpf/add.c
+++ b/mpf/add.c
@@ -1,6 +1,6 @@
/* mpf_add -- Add two floats.
-Copyright 1993, 1994, 1996, 2000 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1996, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/add_ui.c b/mpf/add_ui.c
index a15a23725..5df6642f6 100644
--- a/mpf/add_ui.c
+++ b/mpf/add_ui.c
@@ -1,6 +1,6 @@
/* mpf_add_ui -- Add a float and an unsigned integer.
-Copyright 1993, 1994, 1996, 2000 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1996, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/clear.c b/mpf/clear.c
index 5d04aa0a4..3d0cba094 100644
--- a/mpf/clear.c
+++ b/mpf/clear.c
@@ -1,7 +1,7 @@
/* mpf_clear -- de-allocate the space occupied by the dynamic digit space of
an integer.
-Copyright 1993, 1994, 1995, 2000 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1995, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/cmp.c b/mpf/cmp.c
index 967f76bb9..b24207d58 100644
--- a/mpf/cmp.c
+++ b/mpf/cmp.c
@@ -1,6 +1,6 @@
/* mpf_cmp -- Compare two floats.
-Copyright 1993, 1994, 1996 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1996, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/cmp_si.c b/mpf/cmp_si.c
index 23afd0fd6..d0a1c4c63 100644
--- a/mpf/cmp_si.c
+++ b/mpf/cmp_si.c
@@ -1,6 +1,6 @@
/* mpf_cmp_si -- Compare a float with a signed integer.
-Copyright 1993, 1994, 1995, 1999, 2000 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1995, 1999, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/cmp_ui.c b/mpf/cmp_ui.c
index f59d988d8..cbb17bbac 100644
--- a/mpf/cmp_ui.c
+++ b/mpf/cmp_ui.c
@@ -1,6 +1,6 @@
/* mpf_cmp_ui -- Compare a float with an unsigned integer.
-Copyright 1993, 1994, 1995, 1999 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1995, 1999, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/div.c b/mpf/div.c
index fe5202cf8..2b3f37d00 100644
--- a/mpf/div.c
+++ b/mpf/div.c
@@ -1,6 +1,6 @@
/* mpf_div -- Divide two floats.
-Copyright 1993, 1994, 1996, 2000 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1996, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/div_2exp.c b/mpf/div_2exp.c
index 5ea6280e1..870abefe3 100644
--- a/mpf/div_2exp.c
+++ b/mpf/div_2exp.c
@@ -1,6 +1,6 @@
/* mpf_div_2exp -- Divide a float by 2^n.
-Copyright 1993, 1994, 1996, 2000 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1996, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/div_ui.c b/mpf/div_ui.c
index 62db568f8..74405afd7 100644
--- a/mpf/div_ui.c
+++ b/mpf/div_ui.c
@@ -1,6 +1,6 @@
/* mpf_div_ui -- Divide a float with an unsigned integer.
-Copyright 1993, 1994, 1996, 2000 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1996, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/dump.c b/mpf/dump.c
index 7403318ae..e7cf3455b 100644
--- a/mpf/dump.c
+++ b/mpf/dump.c
@@ -5,7 +5,7 @@
FUNCTION WILL CHANGE OR DISAPPEAR IN A FUTURE GNU MP RELEASE.
-Copyright 1993, 1994, 1995, 2000 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1995, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/eq.c b/mpf/eq.c
index e1320275f..52dd366ef 100644
--- a/mpf/eq.c
+++ b/mpf/eq.c
@@ -1,6 +1,6 @@
/* mpf_eq -- Compare two floats up to a specified bit #.
-Copyright 1993, 1995, 1996 Free Software Foundation, Inc.
+Copyright 1993, 1995, 1996, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/get_d.c b/mpf/get_d.c
index 3cc088b56..42220d54a 100644
--- a/mpf/get_d.c
+++ b/mpf/get_d.c
@@ -1,6 +1,6 @@
/* double mpf_get_d (mpf_t src) -- Return the double approximation to SRC.
-Copyright 1996 Free Software Foundation, Inc.
+Copyright 1996, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/get_prc.c b/mpf/get_prc.c
index 9b0350012..dd5d00303 100644
--- a/mpf/get_prc.c
+++ b/mpf/get_prc.c
@@ -1,6 +1,6 @@
/* mpf_get_prec(x) -- Return the precision in bits of x.
-Copyright 1996, 2000 Free Software Foundation, Inc.
+Copyright 1996, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/get_str.c b/mpf/get_str.c
index 7fb8f9b3d..7b1fa1687 100644
--- a/mpf/get_str.c
+++ b/mpf/get_str.c
@@ -4,7 +4,7 @@
example, the number 3.1416 would be returned as "31416" in DIGIT_PTR and
1 in EXP.
-Copyright 1993, 1994, 1995, 1996, 1997, 2000 Free Software Foundation,
+Copyright 1993, 1994, 1995, 1996, 1997, 2000, 2001 Free Software Foundation,
Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/init.c b/mpf/init.c
index 5fc840d2b..83d1a32de 100644
--- a/mpf/init.c
+++ b/mpf/init.c
@@ -1,6 +1,6 @@
/* mpf_init() -- Make a new multiple precision number with value 0.
-Copyright 1993, 1994, 1995, 2000 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1995, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/init2.c b/mpf/init2.c
index 8ca653ba8..f4982afd7 100644
--- a/mpf/init2.c
+++ b/mpf/init2.c
@@ -1,6 +1,6 @@
/* mpf_init2() -- Make a new multiple precision number with value 0.
-Copyright 1993, 1994, 1995, 2000 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1995, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/inp_str.c b/mpf/inp_str.c
index 03e827c37..1af7a95b2 100644
--- a/mpf/inp_str.c
+++ b/mpf/inp_str.c
@@ -1,7 +1,7 @@
/* mpf_inp_str(dest_float, stream, base) -- Input a number in base
BASE from stdio stream STREAM and store the result in DEST_FLOAT.
-Copyright 1996, 2000 Free Software Foundation, Inc.
+Copyright 1996, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/integer.c b/mpf/integer.c
index f29e687eb..9c3fc3461 100644
--- a/mpf/integer.c
+++ b/mpf/integer.c
@@ -1,7 +1,7 @@
/* mpf_trunc, mpf_floor, mpf_ceil -- Assign a float from another float while
rounding it to an integer.
-Copyright 1997, 1998, 2000 Free Software Foundation, Inc.
+Copyright 1997, 1998, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/iset.c b/mpf/iset.c
index fd5f8b0cf..9a8b67f80 100644
--- a/mpf/iset.c
+++ b/mpf/iset.c
@@ -1,6 +1,6 @@
/* mpf_init_set -- Initialize a float and assign it from another float.
-Copyright 1993, 1994, 1995, 2000 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1995, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/iset_d.c b/mpf/iset_d.c
index 981272153..288712a9e 100644
--- a/mpf/iset_d.c
+++ b/mpf/iset_d.c
@@ -1,6 +1,6 @@
/* mpf_init_set_d -- Initialize a float and assign it from a double.
-Copyright 1993, 1994, 1995, 2000 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1995, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/iset_si.c b/mpf/iset_si.c
index a97bffb9f..3ca55f14e 100644
--- a/mpf/iset_si.c
+++ b/mpf/iset_si.c
@@ -1,6 +1,6 @@
/* mpf_init_set_si() -- Initialize a float and assign it from a signed int.
-Copyright 1993, 1994, 1995, 2000 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1995, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/iset_str.c b/mpf/iset_str.c
index 6b2b431a5..84d1a4200 100644
--- a/mpf/iset_str.c
+++ b/mpf/iset_str.c
@@ -1,6 +1,6 @@
/* mpf_init_set_str -- Initialize a float and assign it from a string.
-Copyright 1995, 1996, 2000 Free Software Foundation, Inc.
+Copyright 1995, 1996, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/iset_ui.c b/mpf/iset_ui.c
index e411f73d3..9af1db16a 100644
--- a/mpf/iset_ui.c
+++ b/mpf/iset_ui.c
@@ -1,6 +1,6 @@
/* mpf_init_set_ui() -- Initialize a float and assign it from an unsigned int.
-Copyright 1993, 1994, 1995, 2000 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1995, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/mul.c b/mpf/mul.c
index 3edfa2312..82632fa0c 100644
--- a/mpf/mul.c
+++ b/mpf/mul.c
@@ -1,6 +1,6 @@
/* mpf_mul -- Multiply two floats.
-Copyright 1993, 1994, 1996 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1996, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/mul_2exp.c b/mpf/mul_2exp.c
index 6655e2b1e..16e2ee3f6 100644
--- a/mpf/mul_2exp.c
+++ b/mpf/mul_2exp.c
@@ -1,6 +1,6 @@
/* mpf_mul_2exp -- Multiply a float by 2^n.
-Copyright 1993, 1994, 1996, 2000 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1996, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/mul_ui.c b/mpf/mul_ui.c
index 7a6cea362..52f1f3cf7 100644
--- a/mpf/mul_ui.c
+++ b/mpf/mul_ui.c
@@ -1,6 +1,6 @@
/* mpf_mul_ui -- Multiply a float and an unsigned integer.
-Copyright 1993, 1994, 1996 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1996, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/neg.c b/mpf/neg.c
index 30715feea..5e628e9bf 100644
--- a/mpf/neg.c
+++ b/mpf/neg.c
@@ -1,6 +1,6 @@
/* mpf_neg -- Negate a float.
-Copyright 1993, 1994, 1995 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1995, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/out_str.c b/mpf/out_str.c
index d9b919c58..d3b00a5f6 100644
--- a/mpf/out_str.c
+++ b/mpf/out_str.c
@@ -2,7 +2,7 @@
the float OP to STREAM in base BASE. Return the number of characters
written, or 0 if an error occurred.
-Copyright 1996, 1997 Free Software Foundation, Inc.
+Copyright 1996, 1997, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/pow_ui.c b/mpf/pow_ui.c
index a64cd805b..4bf80dcc2 100644
--- a/mpf/pow_ui.c
+++ b/mpf/pow_ui.c
@@ -1,6 +1,6 @@
/* mpf_pow_ui -- Compute b^e.
-Copyright 1998, 1999 Free Software Foundation, Inc.
+Copyright 1998, 1999, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/random2.c b/mpf/random2.c
index 7ee77dca4..f3e93e58d 100644
--- a/mpf/random2.c
+++ b/mpf/random2.c
@@ -2,7 +2,7 @@
long runs of consecutive ones and zeros in the binary representation.
Intended for testing of other MP routines.
-Copyright 1995, 1996 Free Software Foundation, Inc.
+Copyright 1995, 1996, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/reldiff.c b/mpf/reldiff.c
index 602bdbb67..1e308841f 100644
--- a/mpf/reldiff.c
+++ b/mpf/reldiff.c
@@ -1,6 +1,6 @@
/* mpf_reldiff -- Generate the relative difference of two floats.
-Copyright 1996 Free Software Foundation, Inc.
+Copyright 1996, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/set.c b/mpf/set.c
index 3a1c277e6..f4a87709b 100644
--- a/mpf/set.c
+++ b/mpf/set.c
@@ -1,6 +1,6 @@
/* mpf_set -- Assign a float from another float.
-Copyright 1993, 1994, 1995 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1995, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/set_d.c b/mpf/set_d.c
index cd05c45fb..9a8ff35a7 100644
--- a/mpf/set_d.c
+++ b/mpf/set_d.c
@@ -1,6 +1,6 @@
/* mpf_set_d -- Assign a float from a IEEE double.
-Copyright 1993, 1994, 1995, 1996 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1995, 1996, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/set_dfl_prec.c b/mpf/set_dfl_prec.c
index 7c63c6696..c10969df9 100644
--- a/mpf/set_dfl_prec.c
+++ b/mpf/set_dfl_prec.c
@@ -1,6 +1,6 @@
/* mpf_set_default_prec --
-Copyright 1993, 1994, 1995 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1995, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/set_prc.c b/mpf/set_prc.c
index e3c2ef7e8..2064fe714 100644
--- a/mpf/set_prc.c
+++ b/mpf/set_prc.c
@@ -1,6 +1,6 @@
/* mpf_set_prec(x) -- Change the precision of x.
-Copyright 1993, 1994, 1995, 2000 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1995, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/set_prc_raw.c b/mpf/set_prc_raw.c
index d1e68a58f..fcdc8e0e1 100644
--- a/mpf/set_prc_raw.c
+++ b/mpf/set_prc_raw.c
@@ -2,7 +2,7 @@
allocation. For proper operation, the original precision need to be reset
sooner or later.
-Copyright 1996 Free Software Foundation, Inc.
+Copyright 1996, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/set_q.c b/mpf/set_q.c
index f4ad5bb7f..33b43b532 100644
--- a/mpf/set_q.c
+++ b/mpf/set_q.c
@@ -1,6 +1,6 @@
/* mpf_set_q (mpf_t rop, mpq_t op) -- Convert the rational op to the float rop.
-Copyright 1996, 1999 Free Software Foundation, Inc.
+Copyright 1996, 1999, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/set_si.c b/mpf/set_si.c
index e579ddc3d..c9f96b14a 100644
--- a/mpf/set_si.c
+++ b/mpf/set_si.c
@@ -1,6 +1,6 @@
/* mpf_set_si() -- Assign a float from a signed int.
-Copyright 1993, 1994, 1995, 2000 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1995, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/set_str.c b/mpf/set_str.c
index c9e2aab26..cb50e3e61 100644
--- a/mpf/set_str.c
+++ b/mpf/set_str.c
@@ -2,7 +2,7 @@
in base BASE to a float in dest. If BASE is zero, the leading characters
of STRING is used to figure out the base.
-Copyright 1993, 1994, 1995, 1996, 1997, 2000 Free Software Foundation,
+Copyright 1993, 1994, 1995, 1996, 1997, 2000, 2001 Free Software Foundation,
Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/set_ui.c b/mpf/set_ui.c
index 5cac8abac..4a89ffeaa 100644
--- a/mpf/set_ui.c
+++ b/mpf/set_ui.c
@@ -1,6 +1,6 @@
/* mpf_set_ui() -- Assign a float from an unsigned int.
-Copyright 1993, 1994, 1995 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1995, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/set_z.c b/mpf/set_z.c
index a1b4ef849..25dc6000f 100644
--- a/mpf/set_z.c
+++ b/mpf/set_z.c
@@ -1,6 +1,6 @@
/* mpf_set_z -- Assign a float from an integer.
-Copyright 1996 Free Software Foundation, Inc.
+Copyright 1996, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/size.c b/mpf/size.c
index f1480d5b5..5f284e58e 100644
--- a/mpf/size.c
+++ b/mpf/size.c
@@ -1,7 +1,7 @@
/* mpf_size(x) -- return the number of limbs currently used by the
value of the float X.
-Copyright 1993, 1994, 1995 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1995, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/sqrt.c b/mpf/sqrt.c
index a1a387761..aea67204f 100644
--- a/mpf/sqrt.c
+++ b/mpf/sqrt.c
@@ -1,6 +1,6 @@
/* mpf_sqrt -- Compute the square root of a float.
-Copyright 1993, 1994, 1996, 2000 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1996, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/sqrt_ui.c b/mpf/sqrt_ui.c
index b0debc211..94060301c 100644
--- a/mpf/sqrt_ui.c
+++ b/mpf/sqrt_ui.c
@@ -1,6 +1,6 @@
/* mpf_sqrt_ui -- Compute the square root of an unsigned integer.
-Copyright 1993, 1994, 1996, 2000 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1996, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/sub.c b/mpf/sub.c
index c4b012740..6f809c5fe 100644
--- a/mpf/sub.c
+++ b/mpf/sub.c
@@ -1,6 +1,6 @@
/* mpf_sub -- Subtract two floats.
-Copyright 1993, 1994, 1995, 1996, 1999, 2000 Free Software Foundation,
+Copyright 1993, 1994, 1995, 1996, 1999, 2000, 2001 Free Software Foundation,
Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/sub_ui.c b/mpf/sub_ui.c
index 148139f4d..796ac7900 100644
--- a/mpf/sub_ui.c
+++ b/mpf/sub_ui.c
@@ -1,6 +1,6 @@
/* mpf_sub_ui -- Subtract an unsigned integer from a float.
-Copyright 1993, 1994, 1996 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1996, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/swap.c b/mpf/swap.c
index a93dc5241..d814f170c 100644
--- a/mpf/swap.c
+++ b/mpf/swap.c
@@ -1,6 +1,6 @@
/* mpf_swap (U, V) -- Swap U and V.
-Copyright 1997, 1998, 2000 Free Software Foundation, Inc.
+Copyright 1997, 1998, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/tests/ref.c b/mpf/tests/ref.c
index 5afc2829f..8001dc3a6 100644
--- a/mpf/tests/ref.c
+++ b/mpf/tests/ref.c
@@ -1,6 +1,6 @@
/* Reference floating point routines.
-Copyright 1996 Free Software Foundation, Inc.
+Copyright 1996, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/tests/reuse.c b/mpf/tests/reuse.c
index 1f26552ea..8435553cb 100644
--- a/mpf/tests/reuse.c
+++ b/mpf/tests/reuse.c
@@ -1,6 +1,6 @@
/* Test that routines allow reusing a source variable as destination.
-Copyright 1996, 2000 Free Software Foundation, Inc.
+Copyright 1996, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/tests/t-add.c b/mpf/tests/t-add.c
index a15f5840f..0977653f1 100644
--- a/mpf/tests/t-add.c
+++ b/mpf/tests/t-add.c
@@ -1,6 +1,6 @@
/* Test mpf_add.
-Copyright 1996 Free Software Foundation, Inc.
+Copyright 1996, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/tests/t-conv.c b/mpf/tests/t-conv.c
index 7fb1e1802..6de447188 100644
--- a/mpf/tests/t-conv.c
+++ b/mpf/tests/t-conv.c
@@ -1,6 +1,6 @@
/* Test mpf_get_str and mpf_set_str.
-Copyright 1996, 2000 Free Software Foundation, Inc.
+Copyright 1996, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/tests/t-dm2exp.c b/mpf/tests/t-dm2exp.c
index d2872b194..3c08783dc 100644
--- a/mpf/tests/t-dm2exp.c
+++ b/mpf/tests/t-dm2exp.c
@@ -1,6 +1,6 @@
/* Test mpf_div, mpf_div_2exp, mpf_mul_2exp.
-Copyright 1996, 2000 Free Software Foundation, Inc.
+Copyright 1996, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/tests/t-get_d.c b/mpf/tests/t-get_d.c
index da4506a9e..3a1d1d896 100644
--- a/mpf/tests/t-get_d.c
+++ b/mpf/tests/t-get_d.c
@@ -1,6 +1,6 @@
/* Test mpf_get_d and mpf_set_d.
- Copyright 1996, 1999, 2000 Free Software Foundation, Inc.
+ Copyright 1996, 1999, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/tests/t-muldiv.c b/mpf/tests/t-muldiv.c
index 99280ecd3..a66407970 100644
--- a/mpf/tests/t-muldiv.c
+++ b/mpf/tests/t-muldiv.c
@@ -1,6 +1,6 @@
/* Test mpf_mul, mpf_div, mpf_ui_div, and mpf_div_ui.
-Copyright 1996, 2000 Free Software Foundation, Inc.
+Copyright 1996, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/tests/t-sqrt.c b/mpf/tests/t-sqrt.c
index 0a7c21bd7..c0c1031a7 100644
--- a/mpf/tests/t-sqrt.c
+++ b/mpf/tests/t-sqrt.c
@@ -1,6 +1,6 @@
/* Test mpf_sqrt, mpf_mul.
-Copyright 1996 Free Software Foundation, Inc.
+Copyright 1996, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/tests/t-sub.c b/mpf/tests/t-sub.c
index 82527e4f0..4dccb3a85 100644
--- a/mpf/tests/t-sub.c
+++ b/mpf/tests/t-sub.c
@@ -1,6 +1,6 @@
/* Test mpf_sub.
-Copyright 1996 Free Software Foundation, Inc.
+Copyright 1996, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/ui_div.c b/mpf/ui_div.c
index 22e31d8d5..db646f263 100644
--- a/mpf/ui_div.c
+++ b/mpf/ui_div.c
@@ -1,6 +1,6 @@
/* mpf_ui_div -- Divide an unsigned integer with a float.
-Copyright 1993, 1994, 1995, 1996, 2000 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1995, 1996, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/ui_sub.c b/mpf/ui_sub.c
index 6397de712..ae34a28bd 100644
--- a/mpf/ui_sub.c
+++ b/mpf/ui_sub.c
@@ -1,6 +1,6 @@
/* mpf_ui_sub -- Subtract a float from an unsigned long int.
-Copyright 1993, 1994, 1995, 1996 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1995, 1996, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/urandomb.c b/mpf/urandomb.c
index ae7779735..e428d0e3a 100644
--- a/mpf/urandomb.c
+++ b/mpf/urandomb.c
@@ -3,7 +3,7 @@
using STATE as the random state previously initialized by a call to
gmp_randinit().
-Copyright 1999, 2000 Free Software Foundation, Inc.
+Copyright 1999, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpq/canonicalize.c b/mpq/canonicalize.c
index a697e8d5b..7673249f0 100644
--- a/mpq/canonicalize.c
+++ b/mpq/canonicalize.c
@@ -1,7 +1,7 @@
/* mpq_canonicalize(op) -- Remove common factors of the denominator and
numerator in OP.
-Copyright 1991, 1994, 1995, 1996, 2000 Free Software Foundation, Inc.
+Copyright 1991, 1994, 1995, 1996, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpq/clear.c b/mpq/clear.c
index c824a93da..a9ebd352c 100644
--- a/mpq/clear.c
+++ b/mpq/clear.c
@@ -1,6 +1,6 @@
/* mpq_clear -- free the space occupied by a MP_RAT.
-Copyright 1991, 1994, 1995, 2000 Free Software Foundation, Inc.
+Copyright 1991, 1994, 1995, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpq/cmp.c b/mpq/cmp.c
index 2400e3aaa..79913b0f7 100644
--- a/mpq/cmp.c
+++ b/mpq/cmp.c
@@ -1,7 +1,7 @@
/* mpq_cmp(u,v) -- Compare U, V. Return postive, zero, or negative
based on if U > V, U == V, or U < V.
-Copyright 1991, 1994, 1996 Free Software Foundation, Inc.
+Copyright 1991, 1994, 1996, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpq/cmp_ui.c b/mpq/cmp_ui.c
index 3ba041c5e..e425919f1 100644
--- a/mpq/cmp_ui.c
+++ b/mpq/cmp_ui.c
@@ -2,7 +2,7 @@
negative based on if U > V, U == V, or U < V. Vn and Vd may have
common factors.
-Copyright 1993, 1994, 1996, 2000 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1996, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpq/div.c b/mpq/div.c
index 7eb27efbb..6e1936ca2 100644
--- a/mpq/div.c
+++ b/mpq/div.c
@@ -1,6 +1,6 @@
/* mpq_div -- divide two rational numbers.
-Copyright 1991, 1994, 1995, 1996, 2000 Free Software Foundation, Inc.
+Copyright 1991, 1994, 1995, 1996, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpq/equal.c b/mpq/equal.c
index c76d3087d..f89abcbd2 100644
--- a/mpq/equal.c
+++ b/mpq/equal.c
@@ -1,7 +1,7 @@
/* mpq_equal(u,v) -- Compare U, V. Return non-zero if they are equal, zero
if they are non-equal.
-Copyright 1996 Free Software Foundation, Inc.
+Copyright 1996, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpq/get_d.c b/mpq/get_d.c
index d9ced7406..b069b5684 100644
--- a/mpq/get_d.c
+++ b/mpq/get_d.c
@@ -1,6 +1,6 @@
/* double mpq_get_d (mpq_t src) -- Return the double approximation to SRC.
-Copyright 1995, 1996 Free Software Foundation, Inc.
+Copyright 1995, 1996, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpq/get_den.c b/mpq/get_den.c
index 53b643470..13d9ac882 100644
--- a/mpq/get_den.c
+++ b/mpq/get_den.c
@@ -1,6 +1,6 @@
/* mpq_get_den(den,rat_src) -- Set DEN to the denominator of RAT_SRC.
-Copyright 1991, 1994, 1995 Free Software Foundation, Inc.
+Copyright 1991, 1994, 1995, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpq/get_num.c b/mpq/get_num.c
index 4658e0d7c..fa70a4045 100644
--- a/mpq/get_num.c
+++ b/mpq/get_num.c
@@ -1,6 +1,6 @@
/* mpq_get_num(num,rat_src) -- Set NUM to the numerator of RAT_SRC.
-Copyright 1991, 1994, 1995 Free Software Foundation, Inc.
+Copyright 1991, 1994, 1995, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpq/init.c b/mpq/init.c
index 74cfd0a86..226788187 100644
--- a/mpq/init.c
+++ b/mpq/init.c
@@ -1,6 +1,6 @@
/* mpq_init -- Make a new rational number with value 0/1.
-Copyright 1991, 1994, 1995, 2000 Free Software Foundation, Inc.
+Copyright 1991, 1994, 1995, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpq/inv.c b/mpq/inv.c
index e7ee32b54..d878bb61c 100644
--- a/mpq/inv.c
+++ b/mpq/inv.c
@@ -1,7 +1,7 @@
/* mpq_inv(dest,src) -- invert a rational number, i.e. set DEST to SRC
with the numerator and denominator swapped.
-Copyright 1991, 1994, 1995, 2000 Free Software Foundation, Inc.
+Copyright 1991, 1994, 1995, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpq/mul.c b/mpq/mul.c
index beab30cf6..fcd87b1ee 100644
--- a/mpq/mul.c
+++ b/mpq/mul.c
@@ -1,6 +1,6 @@
/* mpq_mul -- mutiply two rational numbers.
-Copyright 1991, 1994, 1995, 1996, 2000 Free Software Foundation, Inc.
+Copyright 1991, 1994, 1995, 1996, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpq/out_str.c b/mpq/out_str.c
index 9123386c6..9d85ddcb3 100644
--- a/mpq/out_str.c
+++ b/mpq/out_str.c
@@ -1,7 +1,7 @@
/* mpq_out_str(stream,base,integer) */
/*
-Copyright 2000 Free Software Foundation, Inc.
+Copyright 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpq/set.c b/mpq/set.c
index b8d612b32..32ca878c3 100644
--- a/mpq/set.c
+++ b/mpq/set.c
@@ -1,6 +1,6 @@
/* mpq_set(dest,src) -- Set DEST to SRC.
-Copyright 1991, 1994, 1995 Free Software Foundation, Inc.
+Copyright 1991, 1994, 1995, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpq/set_den.c b/mpq/set_den.c
index 4382c0aca..67c6f0680 100644
--- a/mpq/set_den.c
+++ b/mpq/set_den.c
@@ -1,6 +1,6 @@
/* mpq_set_den(dest,den) -- Set the denominator of DEST from DEN.
-Copyright 1991, 1994, 1995, 1996, 2000 Free Software Foundation, Inc.
+Copyright 1991, 1994, 1995, 1996, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpq/set_num.c b/mpq/set_num.c
index d833d56cf..9b5008c24 100644
--- a/mpq/set_num.c
+++ b/mpq/set_num.c
@@ -1,6 +1,6 @@
/* mpq_set_num(dest,num) -- Set the numerator of DEST from NUM.
-Copyright 1991, 1994, 1995 Free Software Foundation, Inc.
+Copyright 1991, 1994, 1995, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpq/set_si.c b/mpq/set_si.c
index 8ed0c64b9..5b9ce4a5a 100644
--- a/mpq/set_si.c
+++ b/mpq/set_si.c
@@ -1,7 +1,7 @@
/* mpq_set_si(dest,ulong_num,ulong_den) -- Set DEST to the retional number
ULONG_NUM/ULONG_DEN.
-Copyright 1991, 1994, 1995 Free Software Foundation, Inc.
+Copyright 1991, 1994, 1995, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpq/set_ui.c b/mpq/set_ui.c
index ba0125348..715060ad9 100644
--- a/mpq/set_ui.c
+++ b/mpq/set_ui.c
@@ -1,7 +1,7 @@
/* mpq_set_ui(dest,ulong_num,ulong_den) -- Set DEST to the retional number
ULONG_NUM/ULONG_DEN.
-Copyright 1991, 1994, 1995 Free Software Foundation, Inc.
+Copyright 1991, 1994, 1995, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpq/set_z.c b/mpq/set_z.c
index d371243a1..ba9322fb7 100644
--- a/mpq/set_z.c
+++ b/mpq/set_z.c
@@ -1,6 +1,6 @@
/* mpq_set_z (dest,src) -- Set DEST to SRC.
-Copyright 1996 Free Software Foundation, Inc.
+Copyright 1996, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpq/swap.c b/mpq/swap.c
index 530e9411e..a3c4e10f7 100644
--- a/mpq/swap.c
+++ b/mpq/swap.c
@@ -1,6 +1,6 @@
/* mpq_swap (U, V) -- Swap U and V.
-Copyright 1997, 1998, 2000 Free Software Foundation, Inc.
+Copyright 1997, 1998, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.