summaryrefslogtreecommitdiff
path: root/mpq
diff options
context:
space:
mode:
authorKevin Ryde <user42@zip.com.au>2000-10-15 01:17:31 +0200
committerKevin Ryde <user42@zip.com.au>2000-10-15 01:17:31 +0200
commit4295e0de0ab58fc78675ddcbd999582490c33900 (patch)
tree8055aa9cf46f40e551a7e45f829ae67f2453e46a /mpq
parenta8b5d954bab1bd5df4094ccffe39544c4dd2c469 (diff)
downloadgmp-4295e0de0ab58fc78675ddcbd999582490c33900.tar.gz
Copyright (C) -> Copyright.
Diffstat (limited to 'mpq')
-rw-r--r--mpq/Makefile.am2
-rw-r--r--mpq/Makefile.in2
-rw-r--r--mpq/abs.c2
-rw-r--r--mpq/aors.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/md_2exp.c2
-rw-r--r--mpq/mul.c2
-rw-r--r--mpq/neg.c2
-rw-r--r--mpq/out_str.c2
-rw-r--r--mpq/set.c2
-rw-r--r--mpq/set_d.c2
-rw-r--r--mpq/set_den.c2
-rw-r--r--mpq/set_f.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
-rw-r--r--mpq/tests/Makefile.am2
-rw-r--r--mpq/tests/Makefile.in2
-rw-r--r--mpq/tests/t-cmp.c2
-rw-r--r--mpq/tests/t-cmp_ui.c2
-rw-r--r--mpq/tests/t-get_d.c2
-rw-r--r--mpq/tests/t-md_2exp.c2
-rw-r--r--mpq/tests/t-set_f.c2
35 files changed, 35 insertions, 35 deletions
diff --git a/mpq/Makefile.am b/mpq/Makefile.am
index f3e017351..d8e81c9fc 100644
--- a/mpq/Makefile.am
+++ b/mpq/Makefile.am
@@ -1,6 +1,6 @@
## Process this file with automake to generate Makefile.in
-# Copyright (C) 1996, 1998, 2000 Free Software Foundation, Inc.
+# Copyright 1996, 1998, 2000 Free Software Foundation, Inc.
#
# This file is part of the GNU MP Library.
#
diff --git a/mpq/Makefile.in b/mpq/Makefile.in
index 3f87c4066..678abe3b8 100644
--- a/mpq/Makefile.in
+++ b/mpq/Makefile.in
@@ -98,7 +98,7 @@ install_sh = @install_sh@
mpn_objects = @mpn_objects@
mpn_objs_in_libgmp = @mpn_objs_in_libgmp@
-# Copyright (C) 1996, 1998, 2000 Free Software Foundation, Inc.
+# Copyright 1996, 1998, 2000 Free Software Foundation, Inc.
#
# This file is part of the GNU MP Library.
#
diff --git a/mpq/abs.c b/mpq/abs.c
index 5d9de7026..338328bba 100644
--- a/mpq/abs.c
+++ b/mpq/abs.c
@@ -1,6 +1,6 @@
/* mpq_abs -- absolute value of a rational.
-Copyright (C) 2000 Free Software Foundation, Inc.
+Copyright 2000 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpq/aors.c b/mpq/aors.c
index 7c8432126..d21eb6816 100644
--- a/mpq/aors.c
+++ b/mpq/aors.c
@@ -1,6 +1,6 @@
/* mpq_add, mpq_sub -- add or subtract rational numbers.
-Copyright (C) 1991, 1994, 1995, 1996, 1997, 2000 Free Software Foundation,
+Copyright 1991, 1994, 1995, 1996, 1997, 2000 Free Software Foundation,
Inc.
This file is part of the GNU MP Library.
diff --git a/mpq/canonicalize.c b/mpq/canonicalize.c
index 933cb523b..2955fff11 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 (C) 1991, 1994, 1995, 1996 Free Software Foundation, Inc.
+Copyright 1991, 1994, 1995, 1996 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpq/clear.c b/mpq/clear.c
index e29bcfcc5..ed0c0b8fd 100644
--- a/mpq/clear.c
+++ b/mpq/clear.c
@@ -1,6 +1,6 @@
/* mpq_clear -- free the space occupied by a MP_RAT.
-Copyright (C) 1991, 1994, 1995 Free Software Foundation, Inc.
+Copyright 1991, 1994, 1995 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpq/cmp.c b/mpq/cmp.c
index 43daa03c2..d84f7f408 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 (C) 1991, 1994, 1996 Free Software Foundation, Inc.
+Copyright 1991, 1994, 1996 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 75f54eda0..f572d4a0d 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 (C) 1993, 1994, 1996 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1996 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpq/div.c b/mpq/div.c
index 0440426f3..53445224a 100644
--- a/mpq/div.c
+++ b/mpq/div.c
@@ -1,6 +1,6 @@
/* mpq_div -- divide two rational numbers.
-Copyright (C) 1991, 1994, 1995, 1996, 2000 Free Software Foundation, Inc.
+Copyright 1991, 1994, 1995, 1996, 2000 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpq/equal.c b/mpq/equal.c
index c19134dfb..47f51ed3e 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 (C) 1996 Free Software Foundation, Inc.
+Copyright 1996 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 4497fd33f..7cd06e50a 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 (C) 1995, 1996 Free Software Foundation, Inc.
+Copyright 1995, 1996 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 7c33e6f7f..7bd191ad1 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 (C) 1991, 1994, 1995 Free Software Foundation, Inc.
+Copyright 1991, 1994, 1995 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 3df0a4a46..ccd3adf1f 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 (C) 1991, 1994, 1995 Free Software Foundation, Inc.
+Copyright 1991, 1994, 1995 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpq/init.c b/mpq/init.c
index bd86bb303..faeb60ea7 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 (C) 1991, 1994, 1995 Free Software Foundation, Inc.
+Copyright 1991, 1994, 1995 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpq/inv.c b/mpq/inv.c
index 66bc33a67..14bf0a0dd 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 (C) 1991, 1994, 1995, 2000 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/md_2exp.c b/mpq/md_2exp.c
index eb0e10f70..611693d5b 100644
--- a/mpq/md_2exp.c
+++ b/mpq/md_2exp.c
@@ -1,7 +1,7 @@
/* mpq_mul_2exp, mpq_div_2exp - multiply or divide by 2^N */
/*
-Copyright (C) 2000 Free Software Foundation, Inc.
+Copyright 2000 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpq/mul.c b/mpq/mul.c
index 9b8abc243..4c17e2b00 100644
--- a/mpq/mul.c
+++ b/mpq/mul.c
@@ -1,6 +1,6 @@
/* mpq_mul -- mutiply two rational numbers.
-Copyright (C) 1991, 1994, 1995, 1996 Free Software Foundation, Inc.
+Copyright 1991, 1994, 1995, 1996 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpq/neg.c b/mpq/neg.c
index e7da1602c..44a6960f2 100644
--- a/mpq/neg.c
+++ b/mpq/neg.c
@@ -1,6 +1,6 @@
/* mpq_neg(dst, src) -- Assign the negated value of SRC to DST.
-Copyright (C) 1991, 1994, 1995 Free Software Foundation, Inc.
+Copyright 1991, 1994, 1995 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 6898dfa07..035edfce8 100644
--- a/mpq/out_str.c
+++ b/mpq/out_str.c
@@ -1,7 +1,7 @@
/* mpq_out_str(stream,base,integer) */
/*
-Copyright (C) 2000 Free Software Foundation, Inc.
+Copyright 2000 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpq/set.c b/mpq/set.c
index bad0da2e2..4f9e9ca41 100644
--- a/mpq/set.c
+++ b/mpq/set.c
@@ -1,6 +1,6 @@
/* mpq_set(dest,src) -- Set DEST to SRC.
-Copyright (C) 1991, 1994, 1995 Free Software Foundation, Inc.
+Copyright 1991, 1994, 1995 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpq/set_d.c b/mpq/set_d.c
index 7ccc741ee..19d473967 100644
--- a/mpq/set_d.c
+++ b/mpq/set_d.c
@@ -1,6 +1,6 @@
/* mpq_set_d(mpq_t q, double d) -- Set q to d without rounding.
-Copyright (C) 2000 Free Software Foundation, Inc.
+Copyright 2000 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 79840e915..63f57ec5c 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 (C) 1991, 1994, 1995, 1996, 2000 Free Software Foundation, Inc.
+Copyright 1991, 1994, 1995, 1996, 2000 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpq/set_f.c b/mpq/set_f.c
index e24f99068..5bbc3f31a 100644
--- a/mpq/set_f.c
+++ b/mpq/set_f.c
@@ -1,6 +1,6 @@
/* mpq_set_f -- set an mpq from an mpf.
-Copyright (C) 2000 Free Software Foundation, Inc.
+Copyright 2000 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 0fab0085c..3081f1e38 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 (C) 1991, 1994, 1995 Free Software Foundation, Inc.
+Copyright 1991, 1994, 1995 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 8e5b08460..1c45eb642 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 (C) 1991, 1994, 1995 Free Software Foundation, Inc.
+Copyright 1991, 1994, 1995 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 2c5f73fc2..d9f654a29 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 (C) 1991, 1994, 1995 Free Software Foundation, Inc.
+Copyright 1991, 1994, 1995 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 347c67d4b..c094e9fee 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 (C) 1996 Free Software Foundation, Inc.
+Copyright 1996 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpq/swap.c b/mpq/swap.c
index 431a6371a..13971765a 100644
--- a/mpq/swap.c
+++ b/mpq/swap.c
@@ -1,6 +1,6 @@
/* mpq_swap (U, V) -- Swap U and V.
-Copyright (C) 1997, 1998, 2000 Free Software Foundation, Inc.
+Copyright 1997, 1998, 2000 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpq/tests/Makefile.am b/mpq/tests/Makefile.am
index cb46535c9..1b02161bb 100644
--- a/mpq/tests/Makefile.am
+++ b/mpq/tests/Makefile.am
@@ -1,6 +1,6 @@
## Process this file with automake to generate Makefile.in
-# Copyright (C) 1996, 1999, 2000 Free Software Foundation, Inc.
+# Copyright 1996, 1999, 2000 Free Software Foundation, Inc.
#
# This file is part of the GNU MP Library.
#
diff --git a/mpq/tests/Makefile.in b/mpq/tests/Makefile.in
index a51e7d38e..18c13a498 100644
--- a/mpq/tests/Makefile.in
+++ b/mpq/tests/Makefile.in
@@ -98,7 +98,7 @@ install_sh = @install_sh@
mpn_objects = @mpn_objects@
mpn_objs_in_libgmp = @mpn_objs_in_libgmp@
-# Copyright (C) 1996, 1999, 2000 Free Software Foundation, Inc.
+# Copyright 1996, 1999, 2000 Free Software Foundation, Inc.
#
# This file is part of the GNU MP Library.
#
diff --git a/mpq/tests/t-cmp.c b/mpq/tests/t-cmp.c
index 3ecbf56a0..a662e60e0 100644
--- a/mpq/tests/t-cmp.c
+++ b/mpq/tests/t-cmp.c
@@ -1,6 +1,6 @@
/* Test mpq_cmp.
-Copyright (C) 1996 Free Software Foundation, Inc.
+Copyright 1996 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpq/tests/t-cmp_ui.c b/mpq/tests/t-cmp_ui.c
index 4f26790ba..c86fbd61c 100644
--- a/mpq/tests/t-cmp_ui.c
+++ b/mpq/tests/t-cmp_ui.c
@@ -1,6 +1,6 @@
/* Test mpq_cmp_ui.
-Copyright (C) 1996, 1997 Free Software Foundation, Inc.
+Copyright 1996, 1997 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpq/tests/t-get_d.c b/mpq/tests/t-get_d.c
index a8930d8f2..3dd308a52 100644
--- a/mpq/tests/t-get_d.c
+++ b/mpq/tests/t-get_d.c
@@ -1,6 +1,6 @@
/* Test mpq_get_d and mpq_set_d
-Copyright (C) 1991, 1993, 1994, 1996, 2000 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/mpq/tests/t-md_2exp.c b/mpq/tests/t-md_2exp.c
index 345d928ab..77aaada2a 100644
--- a/mpq/tests/t-md_2exp.c
+++ b/mpq/tests/t-md_2exp.c
@@ -1,6 +1,6 @@
/* Test mpq_mul_2exp and mpq_div_2exp.
-Copyright (C) 2000 Free Software Foundation, Inc.
+Copyright 2000 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
diff --git a/mpq/tests/t-set_f.c b/mpq/tests/t-set_f.c
index 2346f5203..f8b0af29d 100644
--- a/mpq/tests/t-set_f.c
+++ b/mpq/tests/t-set_f.c
@@ -1,6 +1,6 @@
/* Test mpq_set_f.
-Copyright (C) 2000 Free Software Foundation, Inc.
+Copyright 2000 Free Software Foundation, Inc.
This file is part of the GNU MP Library.