summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mp_set_fns.c2
-rw-r--r--mpbsd/mfree.c2
-rw-r--r--mpf/clear.c2
-rw-r--r--mpf/init.c2
-rw-r--r--mpf/init2.c2
-rw-r--r--mpf/inp_str.c2
-rw-r--r--mpf/iset.c2
-rw-r--r--mpf/iset_d.c2
-rw-r--r--mpf/iset_ui.c2
-rw-r--r--mpq/clear.c2
-rw-r--r--mpq/init.c2
-rw-r--r--mpz/clear.c2
-rw-r--r--mpz/get_str.c2
-rw-r--r--mpz/init.c2
-rw-r--r--mpz/iset.c2
-rw-r--r--mpz/iset_d.c2
-rw-r--r--mpz/iset_ui.c2
-rw-r--r--mpz/realloc.c2
18 files changed, 18 insertions, 18 deletions
diff --git a/mp_set_fns.c b/mp_set_fns.c
index 2744047bf..a6134ab38 100644
--- a/mp_set_fns.c
+++ b/mp_set_fns.c
@@ -1,7 +1,7 @@
/* mp_set_memory_functions -- Set the allocate, reallocate, and free functions
for use by the mp package.
-Copyright 1991, 1993, 1994 Free Software Foundation, Inc.
+Copyright 1991, 1993, 1994, 2000 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpbsd/mfree.c b/mpbsd/mfree.c
index 72b0e927f..8fbd7ed00 100644
--- a/mpbsd/mfree.c
+++ b/mpbsd/mfree.c
@@ -1,4 +1,4 @@
-/* mfree -- BSD compatible mfree.
+/*, 2000 mfree -- BSD compatible mfree.
Copyright 1991, 1994, 1995 Free Software Foundation, Inc.
diff --git a/mpf/clear.c b/mpf/clear.c
index a81b4d55e..c7d8bc842 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 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1995, 2000 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/init.c b/mpf/init.c
index d5c12f354..48c481830 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 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1995, 2000 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/init2.c b/mpf/init2.c
index 1b2744a27..b357b31f3 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 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1995, 2000 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 4e959f58c..d71267769 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 Free Software Foundation, Inc.
+Copyright 1996, 2000 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/iset.c b/mpf/iset.c
index b5f4d37c9..13b29e55d 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 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1995, 2000 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 77a26ae95..f8e57a6d1 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 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1995, 2000 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 13f7afb20..76f412d3f 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 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1995, 2000 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpq/clear.c b/mpq/clear.c
index b9100fd93..444e1f9ef 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 Free Software Foundation, Inc.
+Copyright 1991, 1994, 1995, 2000 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpq/init.c b/mpq/init.c
index aa2fce8dd..7291cdc62 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 Free Software Foundation, Inc.
+Copyright 1991, 1994, 1995, 2000 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpz/clear.c b/mpz/clear.c
index ade6c54a0..7be27917d 100644
--- a/mpz/clear.c
+++ b/mpz/clear.c
@@ -1,7 +1,7 @@
/* mpz_clear -- de-allocate the space occupied by the dynamic digit space of
an integer.
-Copyright 1991, 1993, 1994, 1995 Free Software Foundation, Inc.
+Copyright 1991, 1993, 1994, 1995, 2000 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpz/get_str.c b/mpz/get_str.c
index d8e42b29e..9b9f4ed3b 100644
--- a/mpz/get_str.c
+++ b/mpz/get_str.c
@@ -4,7 +4,7 @@
result. If STRING is not NULL, the caller must ensure enough space is
available to store the result.
-Copyright 1991, 1993, 1994, 1996 Free Software Foundation, Inc.
+Copyright 1991, 1993, 1994, 1996, 2000 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpz/init.c b/mpz/init.c
index 13596de84..5690b03c8 100644
--- a/mpz/init.c
+++ b/mpz/init.c
@@ -1,6 +1,6 @@
/* mpz_init() -- Make a new multiple precision number with value 0.
-Copyright 1991, 1993, 1994, 1995 Free Software Foundation, Inc.
+Copyright 1991, 1993, 1994, 1995, 2000 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpz/iset.c b/mpz/iset.c
index b473175f5..9aac6a387 100644
--- a/mpz/iset.c
+++ b/mpz/iset.c
@@ -1,7 +1,7 @@
/* mpz_init_set (src_integer) -- Make a new multiple precision number with
a value copied from SRC_INTEGER.
-Copyright 1991, 1993, 1994, 1996 Free Software Foundation, Inc.
+Copyright 1991, 1993, 1994, 1996, 2000 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpz/iset_d.c b/mpz/iset_d.c
index 446d13f66..766126eff 100644
--- a/mpz/iset_d.c
+++ b/mpz/iset_d.c
@@ -1,7 +1,7 @@
/* mpz_init_set_d(integer, val) -- Initialize and assign INTEGER with a double
value VAL.
-Copyright 1996 Free Software Foundation, Inc.
+Copyright 1996, 2000 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpz/iset_ui.c b/mpz/iset_ui.c
index 062bab043..ba124c718 100644
--- a/mpz/iset_ui.c
+++ b/mpz/iset_ui.c
@@ -1,7 +1,7 @@
/* mpz_init_set_ui(val) -- Make a new multiple precision number with
value val.
-Copyright 1991, 1993, 1994, 1995 Free Software Foundation, Inc.
+Copyright 1991, 1993, 1994, 1995, 2000 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpz/realloc.c b/mpz/realloc.c
index 6382f6112..b9f096bda 100644
--- a/mpz/realloc.c
+++ b/mpz/realloc.c
@@ -1,6 +1,6 @@
/* _mpz_realloc -- make the mpz_t have NEW_SIZE digits allocated.
-Copyright 1991, 1993, 1994, 1995 Free Software Foundation, Inc.
+Copyright 1991, 1993, 1994, 1995, 2000 Free Software Foundation, Inc.
This file is part of the GNU MP Library.