summaryrefslogtreecommitdiff
path: root/mpf
diff options
context:
space:
mode:
authortege <tege@gmplib.org>2005-11-01 00:20:34 +0100
committertege <tege@gmplib.org>2005-11-01 00:20:34 +0100
commit9f9e94507cef689067411684ac7eed4c76d58f53 (patch)
tree6696a0e096595ee2452c0cd28f1e58d09afb617a /mpf
parenta6f4d0b7bd8fb555d493a9a6f2d44e0eb06ca3be (diff)
downloadgmp-9f9e94507cef689067411684ac7eed4c76d58f53.tar.gz
Add a copyright year.
Diffstat (limited to 'mpf')
-rw-r--r--mpf/add.c2
-rw-r--r--mpf/div.c4
-rw-r--r--mpf/div_ui.c4
-rw-r--r--mpf/get_str.c4
-rw-r--r--mpf/mul.c2
-rw-r--r--mpf/out_str.c2
-rw-r--r--mpf/reldiff.c2
-rw-r--r--mpf/set_q.c2
-rw-r--r--mpf/set_str.c4
-rw-r--r--mpf/sqrt.c3
-rw-r--r--mpf/sqrt_ui.c3
-rw-r--r--mpf/sub.c4
-rw-r--r--mpf/ui_div.c2
-rw-r--r--mpf/ui_sub.c3
14 files changed, 22 insertions, 19 deletions
diff --git a/mpf/add.c b/mpf/add.c
index dcf17a228..82eea1fbe 100644
--- a/mpf/add.c
+++ b/mpf/add.c
@@ -1,6 +1,6 @@
/* mpf_add -- Add two floats.
-Copyright 1993, 1994, 1996, 2000, 2001 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1996, 2000, 2001, 2005 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/div.c b/mpf/div.c
index e38b24a1f..2ff073b96 100644
--- a/mpf/div.c
+++ b/mpf/div.c
@@ -1,7 +1,7 @@
/* mpf_div -- Divide two floats.
-Copyright 1993, 1994, 1996, 2000, 2001, 2002, 2004 Free Software Foundation,
-Inc.
+Copyright 1993, 1994, 1996, 2000, 2001, 2002, 2004, 2005 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 2cad6265c..541c1241c 100644
--- a/mpf/div_ui.c
+++ b/mpf/div_ui.c
@@ -1,7 +1,7 @@
/* mpf_div_ui -- Divide a float with an unsigned integer.
-Copyright 1993, 1994, 1996, 2000, 2001, 2002, 2004 Free Software Foundation,
-Inc.
+Copyright 1993, 1994, 1996, 2000, 2001, 2002, 2004, 2005 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 59f458502..37cd524fc 100644
--- a/mpf/get_str.c
+++ b/mpf/get_str.c
@@ -4,8 +4,8 @@
example, the number 3.1416 would be returned as "31416" in DIGIT_PTR and
1 in EXP.
-Copyright 1993, 1994, 1995, 1996, 1997, 2000, 2001, 2002, 2003 Free Software
-Foundation, Inc.
+Copyright 1993, 1994, 1995, 1996, 1997, 2000, 2001, 2002, 2003, 2005 Free
+Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/mul.c b/mpf/mul.c
index f2f1e673e..7afb29dfb 100644
--- a/mpf/mul.c
+++ b/mpf/mul.c
@@ -1,6 +1,6 @@
/* mpf_mul -- Multiply two floats.
-Copyright 1993, 1994, 1996, 2001 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1996, 2001, 2005 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 4da31d43e..1d82e9d86 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, 2001, 2002 Free Software Foundation, Inc.
+Copyright 1996, 1997, 2001, 2002, 2005 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/reldiff.c b/mpf/reldiff.c
index ce8fecdec..da3ad1bd7 100644
--- a/mpf/reldiff.c
+++ b/mpf/reldiff.c
@@ -1,6 +1,6 @@
/* mpf_reldiff -- Generate the relative difference of two floats.
-Copyright 1996, 2001, 2004 Free Software Foundation, Inc.
+Copyright 1996, 2001, 2004, 2005 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 197d7065b..de5c9a829 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, 2001, 2002, 2004 Free Software Foundation, Inc.
+Copyright 1996, 1999, 2001, 2002, 2004, 2005 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 6e9ac7f90..529604d83 100644
--- a/mpf/set_str.c
+++ b/mpf/set_str.c
@@ -2,8 +2,8 @@
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, 2001, 2002, 2003 Free Software
-Foundation, Inc.
+Copyright 1993, 1994, 1995, 1996, 1997, 2000, 2001, 2002, 2003, 2005 Free
+Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/sqrt.c b/mpf/sqrt.c
index 5654a41ad..730787991 100644
--- a/mpf/sqrt.c
+++ b/mpf/sqrt.c
@@ -1,6 +1,7 @@
/* mpf_sqrt -- Compute the square root of a float.
-Copyright 1993, 1994, 1996, 2000, 2001, 2004 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1996, 2000, 2001, 2004, 2005 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 4f2746550..00851cd39 100644
--- a/mpf/sqrt_ui.c
+++ b/mpf/sqrt_ui.c
@@ -1,6 +1,7 @@
/* mpf_sqrt_ui -- Compute the square root of an unsigned integer.
-Copyright 1993, 1994, 1996, 2000, 2001, 2004 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1996, 2000, 2001, 2004, 2005 Free Software Foundation,
+Inc.
This file is part of the GNU MP Library.
diff --git a/mpf/sub.c b/mpf/sub.c
index d0f14e1c5..bef8a4c2f 100644
--- a/mpf/sub.c
+++ b/mpf/sub.c
@@ -1,7 +1,7 @@
/* mpf_sub -- Subtract two floats.
-Copyright 1993, 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004 Free Software
-Foundation, Inc.
+Copyright 1993, 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005 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 c001b614d..3c6812d52 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, 2001, 2002, 2004 Free Software
+Copyright 1993, 1994, 1995, 1996, 2000, 2001, 2002, 2004, 2005 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 3fe422c1e..ec392957d 100644
--- a/mpf/ui_sub.c
+++ b/mpf/ui_sub.c
@@ -1,6 +1,7 @@
/* mpf_ui_sub -- Subtract a float from an unsigned long int.
-Copyright 1993, 1994, 1995, 1996, 2001, 2002 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1995, 1996, 2001, 2002, 2005 Free Software Foundation,
+Inc.
This file is part of the GNU MP Library.