This is the mail archive of the binutils@sources.redhat.com mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

PATCH: Long, Boring, Copyright Pedantry


Patch to standardize FSF Copyright statements as discussed in
<http://sources.redhat.com/ml/binutils/2000-08/msg00175.html>. 
I may have inadvertantly included some generated files, or files that
should not be updated.
ChangeLog entries are preceded by /^# <<directory-name>>/
Should large patches be submitted compressed in binutils (as in gcc-patches)
or uncompressed as in gdb-patches?

Offending perl script

# Usage: find . -type f | xargs perl -pi ../badcopy.pl 2>>../errors
#    updates copyrights belonging to Free.* or Andrew Cagney
#    deletes ([Cc]), converts to 4-digit years, explodes ranges
#    Filenames requiring further work are written to standard error

for (;; last) {
    my($comma_holder);
    last if $_ !~
    /\bCopyright (?:|\([Cc]\) |\@copyright\{\} |\\copyright |\xA9 )(?:\'?\d{1,4} ?[-, ] ?){0,20}(?:\'?\d{2,4},?)(?: \s*(?:Free|Andrew Cagney)|\s*$)/;
    s/\bCopyright \([Cc]\) /Copyright /;
    if (/\bCopyright\b.*\b\d{2,4} ?- ?\d{1,4}\b/) {
	while (/\s?\b(\d{2,4}) ?- ?(\d{1,4})\b/) {
	    my($src_str, $b_yr_str) = ($&, $1);
	    if (length($b_yr_str) == 2) {
		$b_yr_str = '19' . $b_yr_str;
	    }
	    my($e_yr_str) = $2;
	    my($b_yr) = $b_yr_str + 0;
	    my($e_yr) = length($b_yr_str) - length($e_yr_str);
	    if ($e_yr > 0) {
		$e_yr_str = substr($b_yr_str, $[, $e_yr) . $e_yr_str;
	    }
	    $e_yr = $e_yr_str + 0;
	    die "Bad: $b_yr, $e_yr: $_\n" if $b_yr >= $e_yr;
	    my($repl_str) = '';
	    my($separ) = ' ';
	    for (; $b_yr <= $e_yr; $b_yr++) {
		$repl_str .= $separ . $b_yr;
		$separ = ', ';
	    }
	    s/$src_str/$repl_str/;
	}
    }
    if (/\b(Copyright (?:|\@copyright\{\} |\\copyright |\xA9 ))([\', 0-9]+)(.*)$/) {
	my($copr, $list, $holder, $matched) = ($1, $2, $3, $&);

	if ($holder =~ /^\s*$/ && substr($list, -1, 1) eq ',') {
	    $holder = ',' . $holder;
	    chop($list);
	}
	1 while $list =~ s/, \'(\d\d[, ])/, $1/g;
	$list =~ s/^ *(\d.*\d)[ ,]*$/$1/;
	1 while $list =~ s/,(\d)/, $1/g;
	1 while $list =~ s/(\d) (\d)/$1, $2/g;
	$list =~ s/^\d\d,/19$&/;
	$list =~ s/\b(\d\d)$/19$1/;
	1 while $list =~ s/ (\d\d,)/ 19$1/g;
#	    if ($list =~ /^(\d{4}, )((?:\d{2,4}, ){1,20})(\d{4})$/) {
#		my($pref, $middle, $suffix, $b4) = ($1, $2, $3, $&);
#
#		1 while $middle =~ s/\b19(\d\d,)/$1/g;
#		$list =~ s/\Q$b4\E/$pref$middle$suffix/;
#	    }
	$holder = ' ' . $holder
	    if length($holder) > 0 && $holder !~ /^,\s*$/;
	$comma_holder = 1 if $holder =~ /^,?\s*$/;
	s/\Q$matched\E/$copr$list$holder/;
	{
	    my($b_yr) = 1980;
	    foreach $yr (split /, /, $list) {
		if ($yr + 0 <= $b_yr) {
		    print STDERR $ARGV . ':' . $. . ':*Bad*:' . $_ . "\n";
		    last;
		}
		$b_yr = $yr + 0;
	    }
	}
#	    print "\nList: $list\n"
#		if $list !~ /^(?:\d{4}(?:, \d\d){0,20}, ){0,1}\d{4}$/;
    }
    if (length($_) > 80
    && /^(.*)\b(Copyright (?:|\@copyright\{\} )\d{4}, (?:\d{4}, ){0,20}(?:\d{4}))\s+/
    ) {
	my($src_str, $prefix, $year_list, $next_year_list) = ($&, $1, $2, ' ');
	while (length($prefix) + length($year_list) >= 80
	&& $year_list =~ /( \d{4},?)$/) {
	    $next_year_list = $1 . $next_year_list;
	    $year_list = $`;
	}
	$next_year_list =~ s/^ //;
	s/^\Q$src_str\E/$prefix$year_list\n$prefix$next_year_list/;
	if (defined($comma_holder)) {
	    print STDERR $ARGV . ':' . $. . ':*Ctd?*:' . $_ . "\n";
	}
	if (index($prefix, '/*') >= $[) {
	    print STDERR $ARGV . ':' . $. . ':*Comment?*:' . $_ . "\n";
	}
    }
    $_ .= "\n" if substr($_, -1, 1) ne "\n";
}


#
2000-08-25  Rodney Brown  <RodneyBrown@mynd.com>

	* Makefile.in ltconfig ltmain.sh: Standardize FSF Copyright statements.
	* missing move-if-change: Likewise.
	* mpw-configure: Likewise.
	* texinfo/texinfo.tex: Likewise.
	* ylwrap: Likewise.

--- ../binutils-000817/Makefile.in	Thu Aug 17 22:38:04 2000
+++ Makefile.in	Sun Aug 20 23:17:30 2000
@@ -1,5 +1,5 @@
 #
 # Makefile for directory with subdirs to build.
-#   Copyright (C) 1990, 91, 92, 93, 94, 95, 96, 97, 1998
+#   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998
 #   Free Software Foundation
 #
--- ../binutils-000817/ltconfig	Sun Jul  2 11:14:54 2000
+++ ltconfig	Sun Aug 20 23:17:31 2000
@@ -2,5 +2,5 @@
 
 # ltconfig - Create a system-specific libtool.
-# Copyright (C) 1996-1999 Free Software Foundation, Inc.
+# Copyright 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
 # Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
 #
@@ -2730,5 +2730,5 @@
 # NOTE: Changes made to this file will be lost: look at ltconfig or ltmain.sh.
 #
-# Copyright (C) 1996-1999 Free Software Foundation, Inc.
+# Copyright 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
 # Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
 #
--- ../binutils-000817/ltmain.sh	Sun May 14 07:19:50 2000
+++ ltmain.sh	Sun Aug 20 23:17:31 2000
@@ -2,5 +2,5 @@
 # NOTE: Changing this file will not affect anything until you rerun ltconfig.
 #
-# Copyright (C) 1996-1999, 2000 Free Software Foundation, Inc.
+# Copyright 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
 # Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
 #
@@ -696,5 +696,5 @@
       # starting and closing comments
 # /* impgen.c starts here */
-# /*   Copyright (C) 1999 Free Software Foundation, Inc.
+# /*   Copyright 1999 Free Software Foundation, Inc.
 # 
 #  This file is part of GNU libtool.
--- ../binutils-000817/missing	Mon May  3 17:28:40 1999
+++ missing	Sun Aug 20 23:17:31 2000
@@ -1,5 +1,5 @@
 #! /bin/sh
 # Common stub for a few missing GNU programs while installing.
-# Copyright (C) 1996, 1997 Free Software Foundation, Inc.
+# Copyright 1996, 1997 Free Software Foundation, Inc.
 # Franc,ois Pinard <pinard@iro.umontreal.ca>, 1996.
 
--- ../binutils-000817/move-if-change	Mon May  3 17:28:40 1999
+++ move-if-change	Sun Aug 20 23:17:30 2000
@@ -1,5 +1,5 @@
 #!/bin/sh
 
-# Copyright (C) 1996 Free Software Foundation, Inc.
+# Copyright 1996 Free Software Foundation, Inc.
 #
 # This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/mpw-configure	Mon May  3 17:28:40 1999
+++ mpw-configure	Sun Aug 20 23:17:30 2000
@@ -1,4 +1,4 @@
 # Configuration script
-# Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc.
+# Copyright 1994, 1995, 1996 Free Software Foundation, Inc.
 
 # This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/texinfo/texinfo.tex	Thu Jul  6 15:39:36 2000
+++ texinfo/texinfo.tex	Sun Aug 20 23:21:33 2000
@@ -6,6 +6,6 @@
 \def\texinfoversion{2000-05-28.15}
 %
-% Copyright (C) 1985, 86, 88, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99
-% Free Software Foundation, Inc.
+% Copyright 1985, 1986, 1988, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
+% 1998, 1999 Free Software Foundation, Inc.
 %
 % This texinfo.tex file is free software; you can redistribute it and/or
--- ../binutils-000817/ylwrap	Mon May  3 17:28:40 1999
+++ ylwrap	Sun Aug 20 23:17:31 2000
@@ -1,5 +1,5 @@
 #! /bin/sh
 # ylwrap - wrapper for lex/yacc invocations.
-# Copyright (C) 1996, 1997 Free Software Foundation, Inc.
+# Copyright 1996, 1997 Free Software Foundation, Inc.
 # Written by Tom Tromey <tromey@cygnus.com>.
 #

# bfd
2000-08-25  Rodney Brown  <RodneyBrown@mynd.com>

	* aix386-core.c aout-adobe.c: Standardize FSF Copyright statements.
	* aout-arm.c aout-cris.c: Likewise.
	* aout-encap.c aout-ns32k.c aout-sparcle.c aout-target.h: Likewise.
	* aout-tic30.c aout0.c aout32.c aout64.c aoutf1.h aoutx.h: Likewise.
	* archive.c archures.c armnetbsd.c bfd-in.h bfd-in2.h: Likewise.
	* bfd.c binary.c bout.c cache.c coff-a29k.c coff-alpha.c: Likewise.
	* coff-apollo.c coff-arm.c coff-go32.c coff-h8300.c: Likewise.
	* coff-h8500.c coff-i386.c coff-i860.c coff-i960.c: Likewise.
	* coff-m68k.c coff-m88k.c coff-mcore.c coff-mips.c: Likewise.
	* coff-ppc.c coff-rs6000.c coff-sh.c coff-sparc.c: Likewise.
	* coff-tic30.c coff-tic54x.c coff-w65.c coff-we32k.c: Likewise.
	* coff-z8k.c coffcode.h coffgen.c coffswap.h corefile.c: Likewise.
	* cpu-arm.c cpu-avr.c cpu-cris.c cpu-fr30.c cpu-h8300.c: Likewise.
	* cpu-h8500.c cpu-i370.c cpu-i386.c cpu-i960.c: Likewise.
	* cpu-ia64-opc.c cpu-ia64.c cpu-m32r.c cpu-m68k.c: Likewise.
	* cpu-m88k.c cpu-mcore.c cpu-mips.c cpu-ns32k.c cpu-pj.c: Likewise.
	* cpu-powerpc.c cpu-rs6000.c cpu-sh.c cpu-sparc.c: Likewise.
	* cpu-tic54x.c cpu-tic80.c cpu-vax.c cpu-w65.c: Likewise.
	* cpu-we32k.c cpu-z8k.c demo64.c dwarf2.c ecoff.c: Likewise.
	* ecofflink.c elf-bfd.h elf-hppa.h elf-m10200.c: Likewise.
	* elf-m10300.c elf.c elf32-arc.c elf32-avr.c elf32-cris.c: Likewise.
	* elf32-d10v.c elf32-d30v.c elf32-fr30.c elf32-hppa.c: Likewise.
	* elf32-hppa.h elf32-i370.c elf32-i386.c elf32-m32r.c: Likewise.
	* elf32-m68hc11.c elf32-m68hc12.c elf32-m68k.c: Likewise.
	* elf32-mips.c elf32-ppc.c elf32-sh.c elf32-sparc.c: Likewise.
	* elf32-v850.c elf64-alpha.c elf64-hppa.h elf64-sparc.c: Likewise.
	* elfcode.h elfcore.h elflink.c format.c freebsd.h: Likewise.
	* gen-aout.c hash.c host-aout.c hp300hpux.c: Likewise.
	* hppabsd-core.c hpux-core.c i386aout.c i386bsd.c: Likewise.
	* i386dynix.c i386freebsd.c i386linux.c i386lynx.c: Likewise.
	* i386mach3.c i386msdos.c i386netbsd.c i386os9k.c ieee.c: Likewise.
	* init.c irix-core.c libaout.h libbfd-in.h libbfd.c: Likewise.
	* libbfd.h libcoff-in.h libcoff.h libecoff.h libhppa.h: Likewise.
	* libieee.h libnlm.h liboasys.h linker.c m68k4knetbsd.c: Likewise.
	* m68klinux.c m68klynx.c m68knetbsd.c m88kmach3.c: Likewise.
	* mipsbsd.c netbsd-core.c netbsd.h newsos3.c nlm-target.h: Likewise.
	* nlm.c nlm32-alpha.c nlm32-i386.c nlm32-ppc.c: Likewise.
	* nlm32-sparc.c nlm32.c nlm64.c nlmcode.h nlmswap.h: Likewise.
	* ns32knetbsd.c oasys.c opncls.c osf-core.c pc532-mach.c: Likewise.
	* pe-mips.c peigen.c ptrace-core.c reloc.c reloc16.c: Likewise.
	* riscix.c rs6000-core.c section.c som.c som.h: Likewise.
	* sparclinux.c sparclynx.c sparcnetbsd.c srec.c: Likewise.
	* stab-syms.c sunos.c syms.c sysdep.h targets.c tekhex.c: Likewise.
	* trad-core.c vaxnetbsd.c versados.c vms.c: Likewise.

--- ../binutils-000817/bfd/aix386-core.c	Tue Jul 20 00:55:15 1999
+++ bfd/aix386-core.c	Sun Aug 20 23:17:32 2000
@@ -2,5 +2,5 @@
    This was based on trad-core.c, which was written by John Gilmore of
         Cygnus Support.
-   Copyright 1988, 89, 91, 92, 93, 94, 95, 96, 97, 1998
+   Copyright 1988, 1989, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998
    Free Software Foundation, Inc.
    Written by Minh Tran-Le <TRANLE@INTELLICORP.COM>.
--- ../binutils-000817/bfd/aout-adobe.c	Tue Jul 20 00:55:15 1999
+++ bfd/aout-adobe.c	Sun Aug 20 23:17:32 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for a.out.adobe binaries.
-   Copyright 1990, 91, 92, 93, 94, 95, 96, 98, 1999
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1998, 1999
    Free Software Foundation, Inc.
    Written by Cygnus Support.  Based on bout.c.
--- ../binutils-000817/bfd/aout-arm.c	Tue Jul 20 00:55:15 1999
+++ bfd/aout-arm.c	Sun Aug 20 23:17:32 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for raw ARM a.out binaries.
-   Copyright (C) 1994, 95, 96, 97, 98, 1999 Free Software Foundation, Inc.
+   Copyright 1994, 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
    Contributed by Richard Earnshaw (rwe@pegasus.esprit.ec.org)
    
--- ../binutils-000817/bfd/aout-cris.c	Fri Jul 21 02:21:06 2000
+++ bfd/aout-cris.c	Sun Aug 20 23:17:32 2000
@@ -1,4 +1,4 @@
 /* BFD backend for CRIS a.out binaries.
-   Copyright (C) 2000 Free Software Foundation, Inc.
+   Copyright 2000 Free Software Foundation, Inc.
    Contributed by Axis Communications AB.
    Written by Hans-Peter Nilsson.
--- ../binutils-000817/bfd/aout-encap.c	Mon May  3 17:28:55 1999
+++ bfd/aout-encap.c	Sun Aug 20 23:17:32 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for a.out files encapsulated with COFF headers.
-   Copyright (C) 1990, 1991 Free Software Foundation, Inc.
+   Copyright 1990, 1991 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/aout-ns32k.c	Mon Jul 12 20:28:21 1999
+++ bfd/aout-ns32k.c	Sun Aug 20 23:17:32 2000
@@ -1,4 +1,5 @@
 /* BFD back-end for ns32k a.out-ish binaries.
-   Copyright (C) 1990, 91, 92, 94, 95, 96, 1998 Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1992, 1994, 1995, 1996, 1998
+   Free Software Foundation, Inc.
    Contributed by Ian Dall (idall@eleceng.adelaide.edu.au).
 
--- ../binutils-000817/bfd/aout-sparcle.c	Mon May  3 17:28:55 1999
+++ bfd/aout-sparcle.c	Sun Aug 20 23:17:32 2000
@@ -1,4 +1,4 @@
 /* BFD backend for sparc little-endian aout binaries.
-   Copyright (C) 1996 Free Software Foundation, Inc.
+   Copyright 1996 Free Software Foundation, Inc.
    Written by Cygnus Support.
 
--- ../binutils-000817/bfd/aout-target.h	Thu Mar  2 12:38:33 2000
+++ bfd/aout-target.h	Sun Aug 20 23:17:32 2000
@@ -1,4 +1,4 @@
 /* Define a target vector and some small routines for a variant of a.out.
-   Copyright (C) 1990, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/bfd/aout-tic30.c	Thu Mar  2 12:38:33 2000
+++ bfd/aout-tic30.c	Sun Aug 20 23:17:32 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for TMS320C30 a.out binaries.
-   Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1998, 1999, 2000 Free Software Foundation, Inc.
    Contributed by Steven Haworth (steve@pm.cse.rmit.edu.au)
 
--- ../binutils-000817/bfd/aout0.c	Mon May  3 17:28:55 1999
+++ bfd/aout0.c	Sun Aug 20 23:17:32 2000
@@ -1,4 +1,4 @@
 /* BFD backend for SunOS style a.out with flags set to 0
-   Copyright (C) 1990, 91, 92, 93, 1994 Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
    Written by Cygnus Support.
 
--- ../binutils-000817/bfd/aout32.c	Mon May  3 17:28:55 1999
+++ bfd/aout32.c	Sun Aug 20 23:17:32 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for 32-bit a.out files.
-   Copyright (C) 1990, 91, 92, 93, 94 Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
    Written by Cygnus Support.
 
--- ../binutils-000817/bfd/aout64.c	Mon May  3 17:28:55 1999
+++ bfd/aout64.c	Sun Aug 20 23:17:32 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for 64-bit a.out files.
-   Copyright 1990, 1991, 1992  Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1992 Free Software Foundation, Inc.
    Written by Cygnus Support.
 
--- ../binutils-000817/bfd/aoutf1.h	Mon May  3 17:28:55 1999
+++ bfd/aoutf1.h	Sun Aug 20 23:17:32 2000
@@ -1,4 +1,4 @@
 /* A.out "format 1" file handling code for BFD.
-   Copyright 1990, 91, 92, 93, 94, 95, 96, 97, 1998
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998
    Free Software Foundation, Inc.
    Written by Cygnus Support.
--- ../binutils-000817/bfd/aoutx.h	Fri Jul 21 02:21:06 2000
+++ bfd/aoutx.h	Sun Aug 20 23:17:32 2000
@@ -1,4 +1,4 @@
 /* BFD semi-generic back-end for a.out binaries.
-   Copyright 1990, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
    Written by Cygnus Support.
--- ../binutils-000817/bfd/archive.c	Sat Jul  8 03:40:23 2000
+++ bfd/archive.c	Sun Aug 20 23:17:32 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for archive files (libraries).
-   Copyright 1990, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
    Written by Cygnus Support.  Mostly Gumby Henkel-Wallace's fault.
--- ../binutils-000817/bfd/archures.c	Fri Jul 21 02:21:06 2000
+++ bfd/archures.c	Sun Aug 20 23:17:32 2000
@@ -1,4 +1,4 @@
 /* BFD library support routines for architectures.
-   Copyright (C) 1990, 91, 92, 93, 94, 95, 96, 97, 98, 1999, 2000
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
    Hacked by John Gilmore and Steve Chamberlain of Cygnus Support.
--- ../binutils-000817/bfd/armnetbsd.c	Wed Aug 25 01:16:53 1999
+++ bfd/armnetbsd.c	Sun Aug 20 23:17:32 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for NetBSD/ARM a.out-ish binaries.
-   Copyright (C) 1999 Free Software Foundation, Inc.
+   Copyright 1999 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/bfd-in.h	Sat Jul 22 09:40:12 2000
+++ bfd/bfd-in.h	Sun Aug 20 23:17:32 2000
@@ -1,4 +1,4 @@
 /* Main header file for the bfd library -- portable access to object files.
-   Copyright 1990, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
    Contributed by Cygnus Support.
--- ../binutils-000817/bfd/bfd-in2.h	Fri Aug  4 05:40:29 2000
+++ bfd/bfd-in2.h	Sun Aug 20 23:17:32 2000
@@ -1,4 +1,4 @@
 /* Main header file for the bfd library -- portable access to object files.
-   Copyright 1990, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
    Contributed by Cygnus Support.
--- ../binutils-000817/bfd/bfd.c	Tue Aug  1 04:49:55 2000
+++ bfd/bfd.c	Sun Aug 20 23:17:32 2000
@@ -1,4 +1,4 @@
 /* Generic BFD library interface and support routines.
-   Copyright (C) 1990, 91, 92, 93, 94, 95, 96, 97, 98, 1999
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
    Free Software Foundation, Inc.
    Written by Cygnus Support.
--- ../binutils-000817/bfd/binary.c	Tue Jul 20 00:55:15 1999
+++ bfd/binary.c	Sun Aug 20 23:17:32 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for binary objects.
-   Copyright 1994, 95, 96, 97, 98, 1999 Free Software Foundation, Inc.
+   Copyright 1994, 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
    Written by Ian Lance Taylor, Cygnus Support, <ian@cygnus.com>
 
--- ../binutils-000817/bfd/bout.c	Thu Mar  2 06:40:53 2000
+++ bfd/bout.c	Sun Aug 20 23:17:32 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for Intel 960 b.out binaries.
-   Copyright 1990, 91, 92, 93, 94, 95, 96, 97, 98, 1999
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
    Free Software Foundation, Inc.
    Written by Cygnus Support.
--- ../binutils-000817/bfd/cache.c	Fri May 26 23:11:55 2000
+++ bfd/cache.c	Sun Aug 20 23:17:32 2000
@@ -1,4 +1,4 @@
 /* BFD library -- caching of file descriptors.
-   Copyright 1990, 91, 92, 93, 94, 95, 1996, 2000
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 2000
    Free Software Foundation, Inc.
    Hacked by Steve Chamberlain of Cygnus Support (steve@cygnus.com).
--- ../binutils-000817/bfd/coff-a29k.c	Thu Apr 13 11:08:04 2000
+++ bfd/coff-a29k.c	Sun Aug 20 23:17:32 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for AMD 29000 COFF binaries.
-   Copyright 1990, 91, 92, 93, 94, 95, 97, 98, 99, 2000
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
    Contributed by David Wood at New York University 7/8/91.
--- ../binutils-000817/bfd/coff-alpha.c	Fri Apr 28 23:17:26 2000
+++ bfd/coff-alpha.c	Sun Aug 20 23:17:32 2000
@@ -1,4 +1,5 @@
 /* BFD back-end for ALPHA Extended-Coff files.
-   Copyright 1993, 94, 95, 96, 97, 98, 1999 Free Software Foundation, Inc.
+   Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999
+   Free Software Foundation, Inc.
    Modified from coff-mips.c by Steve Chamberlain <sac@cygnus.com> and
    Ian Lance Taylor <ian@cygnus.com>.
--- ../binutils-000817/bfd/coff-apollo.c	Tue Jul 20 00:55:15 1999
+++ bfd/coff-apollo.c	Sun Aug 20 23:17:32 2000
@@ -1,4 +1,5 @@
 /* BFD back-end for Apollo 68000 COFF binaries.
-   Copyright 1990, 91, 92, 93, 94, 95, 1997 Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1997
+   Free Software Foundation, Inc.
    By Troy Rollo (troy@cbme.unsw.edu.au)
    Based on m68k standard COFF version Written by Cygnus Support.
--- ../binutils-000817/bfd/coff-arm.c	Tue Jul  4 15:11:37 2000
+++ bfd/coff-arm.c	Sun Aug 20 23:17:32 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for ARM COFF files.
-   Copyright 1990, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
    Written by Cygnus Support.
--- ../binutils-000817/bfd/coff-go32.c	Wed May  3 14:25:33 2000
+++ bfd/coff-go32.c	Sun Aug 20 23:17:32 2000
@@ -1,4 +1,5 @@
 /* BFD back-end for Intel 386 COFF files (DJGPP variant).
-   Copyright 1990, 91, 92, 93, 94, 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1992, 1993, 1994, 1999, 2000
+   Free Software Foundation, Inc.
    Written by DJ Delorie.
 
--- ../binutils-000817/bfd/coff-h8300.c	Tue Jun 27 11:31:59 2000
+++ bfd/coff-h8300.c	Sun Aug 20 23:17:32 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for Hitachi H8/300 COFF binaries.
-   Copyright 1990, 91, 92, 93, 94, 95, 96, 97, 98, 1999
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
    Free Software Foundation, Inc.
    Written by Steve Chamberlain, <sac@cygnus.com>.
--- ../binutils-000817/bfd/coff-h8500.c	Tue Jul 20 00:55:15 1999
+++ bfd/coff-h8500.c	Sun Aug 20 23:17:32 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for Hitachi H8/500 COFF binaries.
-   Copyright 1993, 94, 95, 1997 Free Software Foundation, Inc.
+   Copyright 1993, 1994, 1995, 1997 Free Software Foundation, Inc.
    Contributed by Cygnus Support.
    Written by Steve Chamberlain, <sac@cygnus.com>.
--- ../binutils-000817/bfd/coff-i386.c	Mon Jun 19 11:22:37 2000
+++ bfd/coff-i386.c	Sun Aug 20 23:17:32 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for Intel 386 COFF files.
-   Copyright 1990, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
    Written by Cygnus Support.
--- ../binutils-000817/bfd/coff-i860.c	Tue Jul 20 00:55:15 1999
+++ bfd/coff-i860.c	Sun Aug 20 23:17:32 2000
@@ -1,4 +1,5 @@
 /* BFD back-end for Intel 860 COFF files.
-   Copyright 1990, 91, 92, 93, 94, 95, 97, 1999 Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1997, 1999
+   Free Software Foundation, Inc.
    Created mostly by substituting "860" for "386" in coff-i386.c
    Harry Dolan <dolan@ssd.intel.com>, October 1995
--- ../binutils-000817/bfd/coff-i960.c	Thu Mar  2 06:40:53 2000
+++ bfd/coff-i960.c	Sun Aug 20 23:17:32 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for Intel 960 COFF files.
-   Copyright (C) 1990, 91, 92, 93, 94, 95, 97, 98, 1999
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1997, 1998, 1999
    Free Software Foundation, Inc.
    Written by Cygnus Support.
--- ../binutils-000817/bfd/coff-m68k.c	Sat Jul 22 09:31:53 2000
+++ bfd/coff-m68k.c	Sun Aug 20 23:17:32 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for Motorola 68000 COFF binaries.
-   Copyright 1990, 91, 92, 93, 94, 95, 96, 97, 99, 2000
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1999, 2000
    Free Software Foundation, Inc.
    Written by Cygnus Support.
--- ../binutils-000817/bfd/coff-m88k.c	Tue Jul 20 18:52:54 1999
+++ bfd/coff-m88k.c	Sun Aug 20 23:17:32 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for Motorola 88000 COFF "Binary Compatability Standard" files.
-   Copyright 1990, 91, 92, 93, 94, 95, 97, 98, 1999
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1997, 1998, 1999
    Free Software Foundation, Inc.
    Written by Cygnus Support.
--- ../binutils-000817/bfd/coff-mcore.c	Mon Jun 19 11:22:37 2000
+++ bfd/coff-mcore.c	Sun Aug 20 23:17:32 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for Motorola MCore COFF/PE
-   Copyright (C) 1999 Free Software Foundation, Inc.
+   Copyright 1999 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/coff-mips.c	Fri Apr 28 23:50:57 2000
+++ bfd/coff-mips.c	Sun Aug 20 23:17:32 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for MIPS Extended-Coff files.
-   Copyright 1990, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
    Original version by Per Bothner.
--- ../binutils-000817/bfd/coff-ppc.c	Thu Mar  2 06:40:53 2000
+++ bfd/coff-ppc.c	Sun Aug 20 23:17:32 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for PowerPC Microsoft Portable Executable files.
-   Copyright 1990, 91, 92, 93, 94, 95, 96, 97, 98, 1999
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
    Free Software Foundation, Inc.
 
--- ../binutils-000817/bfd/coff-rs6000.c	Wed Aug 16 10:34:19 2000
+++ bfd/coff-rs6000.c	Sun Aug 20 23:17:32 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for IBM RS/6000 "XCOFF" files.
-   Copyright 1990, 91, 92, 93, 94, 95, 96, 97, 98, 1999
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
    Free Software Foundation, Inc.
    FIXME: Can someone provide a transliteration of this name into ASCII?
--- ../binutils-000817/bfd/coff-sh.c	Mon May  1 14:47:39 2000
+++ bfd/coff-sh.c	Sun Aug 20 23:17:32 2000
@@ -1,4 +1,5 @@
 /* BFD back-end for Hitachi Super-H COFF binaries.
-   Copyright 1993, 94, 95, 96, 97, 98, 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
+   Free Software Foundation, Inc.
    Contributed by Cygnus Support.
    Written by Steve Chamberlain, <sac@cygnus.com>.
--- ../binutils-000817/bfd/coff-sparc.c	Tue Jul 20 00:55:15 1999
+++ bfd/coff-sparc.c	Sun Aug 20 23:17:32 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for Sparc COFF files.
-   Copyright 1990, 91, 92, 93, 94, 95, 96, 97, 98, 1999
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
    Free Software Foundation, Inc.
    Written by Cygnus Support.
--- ../binutils-000817/bfd/coff-tic30.c	Tue Jul 20 00:55:15 1999
+++ bfd/coff-tic30.c	Sun Aug 20 23:17:32 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for TMS320C30 coff binaries.
-   Copyright (C) 1998, 1999 Free Software Foundation, Inc.
+   Copyright 1998, 1999 Free Software Foundation, Inc.
    Contributed by Steven Haworth (steve@pm.cse.rmit.edu.au)
 
--- ../binutils-000817/bfd/coff-tic54x.c	Thu Apr 27 01:09:42 2000
+++ bfd/coff-tic54x.c	Sun Aug 20 23:17:33 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for TMS320C54X coff binaries.
-   Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1999, 2000 Free Software Foundation, Inc.
    Contributed by Timothy Wall (twall@cygnus.com)
 
--- ../binutils-000817/bfd/coff-w65.c	Tue Jul 20 00:55:15 1999
+++ bfd/coff-w65.c	Sun Aug 20 23:17:33 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for WDC 65816 COFF binaries.
-   Copyright 1995, 96, 1997 Free Software Foundation, Inc.
+   Copyright 1995, 1996, 1997 Free Software Foundation, Inc.
    Written by Steve Chamberlain, <sac@cygnus.com>.
 
--- ../binutils-000817/bfd/coff-we32k.c	Tue Jul 20 00:55:15 1999
+++ bfd/coff-we32k.c	Sun Aug 20 23:17:33 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for we32k COFF files.
-   Copyright (C) 1992, 93, 94, 95, 97, 1999 Free Software Foundation, Inc.
+   Copyright 1992, 1993, 1994, 1995, 1997, 1999 Free Software Foundation, Inc.
    Contributed by Brendan Kehoe (brendan@cs.widener.edu).
 
--- ../binutils-000817/bfd/coff-z8k.c	Tue Jul 20 00:55:15 1999
+++ bfd/coff-z8k.c	Sun Aug 20 23:17:33 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for Zilog Z800n COFF binaries.
-   Copyright 1992, 93, 94, 95, 1997 Free Software Foundation, Inc.
+   Copyright 1992, 1993, 1994, 1995, 1997 Free Software Foundation, Inc.
    Contributed by Cygnus Support.
    Written by Steve Chamberlain, <sac@cygnus.com>.
--- ../binutils-000817/bfd/coffcode.h	Tue Aug  1 04:49:55 2000
+++ bfd/coffcode.h	Sun Aug 20 23:17:33 2000
@@ -1,4 +1,4 @@
 /* Support for the generic parts of most COFF variants, for BFD.
-   Copyright 1990, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
    Written by Cygnus Support.
--- ../binutils-000817/bfd/coffgen.c	Sat Jun 17 06:35:08 2000
+++ bfd/coffgen.c	Sun Aug 20 23:17:33 2000
@@ -1,4 +1,4 @@
 /* Support for the generic parts of COFF, for BFD.
-   Copyright 1990, 91, 92, 93, 94, 95, 96, 97, 98, 1999, 2000
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
    Written by Cygnus Support.
--- ../binutils-000817/bfd/coffswap.h	Thu Apr 27 01:09:43 2000
+++ bfd/coffswap.h	Sun Aug 20 23:17:33 2000
@@ -1,4 +1,4 @@
 /* Generic COFF swapping routines, for BFD.
-   Copyright 1990, 91, 92, 93, 94, 95, 96, 97, 98, 1999
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
    Free Software Foundation, Inc.
    Written by Cygnus Support.
--- ../binutils-000817/bfd/corefile.c	Mon May  3 17:28:55 1999
+++ bfd/corefile.c	Sun Aug 20 23:17:34 2000
@@ -1,4 +1,4 @@
 /* Core file generic interface routines for BFD.
-   Copyright (C) 1990, 91, 92, 93, 94 Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
    Written by Cygnus Support.
 
--- ../binutils-000817/bfd/cpu-arm.c	Mon Jul  5 17:28:24 1999
+++ bfd/cpu-arm.c	Sun Aug 20 23:17:34 2000
@@ -1,4 +1,4 @@
 /* BFD support for the ARM processor
-   Copyright 1994, 95, 97, 1999 Free Software Foundation, Inc.
+   Copyright 1994, 1995, 1997, 1999 Free Software Foundation, Inc.
    Contributed by Richard Earnshaw (rwe@pegasus.esprit.ec.org)
 
--- ../binutils-000817/bfd/cpu-avr.c	Tue Jun 27 11:45:30 2000
+++ bfd/cpu-avr.c	Sun Aug 20 23:17:34 2000
@@ -1,4 +1,4 @@
 /* BFD library support routines for the AVR architecture.
-   Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1999, 2000 Free Software Foundation, Inc.
    Contributed by Denis Chertykov <denisc@overta.ru>
 
--- ../binutils-000817/bfd/cpu-cris.c	Fri Jul 21 02:21:06 2000
+++ bfd/cpu-cris.c	Sun Aug 20 23:17:34 2000
@@ -1,4 +1,4 @@
 /* BFD support for the Axis CRIS architecture.
-   Copyright (C) 2000 Free Software Foundation, Inc.
+   Copyright 2000 Free Software Foundation, Inc.
    Contributed by Axis Communications AB.
    Written by Hans-Peter Nilsson.
--- ../binutils-000817/bfd/cpu-fr30.c	Mon May  3 17:28:55 1999
+++ bfd/cpu-fr30.c	Sun Aug 20 23:17:34 2000
@@ -1,4 +1,4 @@
 /* BFD support for the FR30 processor.
-   Copyright (C) 1998 Free Software Foundation, Inc.
+   Copyright 1998 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/cpu-h8300.c	Tue Jun 27 11:31:59 2000
+++ bfd/cpu-h8300.c	Sun Aug 20 23:17:34 2000
@@ -1,4 +1,4 @@
 /* BFD library support routines for the Hitachi H8/300 architecture.
-   Copyright (C) 1990, 91, 92, 93, 94, 1995 Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
    Hacked by Steve Chamberlain of Cygnus Support.
 
--- ../binutils-000817/bfd/cpu-h8500.c	Mon Jul 12 20:28:56 1999
+++ bfd/cpu-h8500.c	Sun Aug 20 23:17:34 2000
@@ -1,4 +1,4 @@
 /* BFD library support routines for the H8/500 architecture.
-   Copyright (C) 1993, 1994, 1995, 1999 Free Software Foundation, Inc.
+   Copyright 1993, 1994, 1995, 1999 Free Software Foundation, Inc.
    Hacked by Steve Chamberlain of Cygnus Support.
 
--- ../binutils-000817/bfd/cpu-i370.c	Thu Feb 24 00:52:20 2000
+++ bfd/cpu-i370.c	Sun Aug 20 23:17:34 2000
@@ -1,4 +1,4 @@
 /* BFD i370 CPU definition
-   Copyright (C) 1994, 95, 96, 98, 99, 2000 Free Software Foundation, Inc.
+   Copyright 1994, 1995, 1996, 1998, 1999, 2000 Free Software Foundation, Inc.
    Contributed by Ian Lance Taylor, Cygnus Support.
    Hacked by Linas Vepstas <linas@linas.org> in 1998, 1999
--- ../binutils-000817/bfd/cpu-i386.c	Mon May  3 17:28:55 1999
+++ bfd/cpu-i386.c	Sun Aug 20 23:17:34 2000
@@ -1,4 +1,4 @@
 /* BFD support for the Intel 386 architecture.
-   Copyright 1992, 94, 95, 1996 Free Software Foundation, Inc.
+   Copyright 1992, 1994, 1995, 1996 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/cpu-i960.c	Wed May 31 07:31:56 2000
+++ bfd/cpu-i960.c	Sun Aug 20 23:17:34 2000
@@ -1,4 +1,5 @@
 /* BFD library support routines for the i960 architecture.
-   Copyright (C) 1990, 91, 92, 93, 94, 95, 1996 Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996
+   Free Software Foundation, Inc.
    Hacked by Steve Chamberlain of Cygnus Support.
 
--- ../binutils-000817/bfd/cpu-ia64-opc.c	Sat Apr 22 06:22:21 2000
+++ bfd/cpu-ia64-opc.c	Sun Aug 20 23:17:34 2000
@@ -1,3 +1,3 @@
-/* Copyright (C) 1998, 1999  Free Software Foundation, Inc.
+/* Copyright 1998, 1999 Free Software Foundation, Inc.
    Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
 
--- ../binutils-000817/bfd/cpu-ia64.c	Sat Apr 22 06:22:21 2000
+++ bfd/cpu-ia64.c	Sun Aug 20 23:17:35 2000
@@ -1,4 +1,4 @@
 /* BFD support for the ia64 architecture.
-   Copyright (C) 1998, 1999 Free Software Foundation, Inc.
+   Copyright 1998, 1999 Free Software Foundation, Inc.
    Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
 
--- ../binutils-000817/bfd/cpu-m32r.c	Tue Oct  5 10:54:12 1999
+++ bfd/cpu-m32r.c	Sun Aug 20 23:17:35 2000
@@ -1,4 +1,4 @@
 /* BFD support for the M32R processor.
-   Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
+   Copyright 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/cpu-m68k.c	Mon May  3 17:28:55 1999
+++ bfd/cpu-m68k.c	Sun Aug 20 23:17:35 2000
@@ -1,4 +1,4 @@
 /* BFD library support routines for architectures.
-   Copyright (C) 1990, 91, 92, 93, 94, 95, 97, 1998
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1997, 1998
    Free Software Foundation, Inc.
    Hacked by Steve Chamberlain of Cygnus Support.
--- ../binutils-000817/bfd/cpu-m88k.c	Mon May  3 17:28:55 1999
+++ bfd/cpu-m88k.c	Sun Aug 20 23:17:35 2000
@@ -1,4 +1,4 @@
 /* bfd back-end for m88k support
-   Copyright (C) 1990, 91, 92, 93, 94 Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
    Written by Steve Chamberlain of Cygnus Support.
 
--- ../binutils-000817/bfd/cpu-mcore.c	Fri Jan 21 06:08:42 2000
+++ bfd/cpu-mcore.c	Sun Aug 20 23:17:35 2000
@@ -1,4 +1,4 @@
 /* BFD library support routines for Motorola's MCore architecture
-   Copyright (C) 1993, 1999 Free Software Foundation, Inc.
+   Copyright 1993, 1999 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/cpu-mips.c	Tue Aug  1 04:49:56 2000
+++ bfd/cpu-mips.c	Sun Aug 20 23:17:35 2000
@@ -1,4 +1,5 @@
 /* bfd back-end for mips support
-   Copyright (C) 1990, 91-97, 1998, 2000 Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2000
+   Free Software Foundation, Inc.
    Written by Steve Chamberlain of Cygnus Support.
 
--- ../binutils-000817/bfd/cpu-ns32k.c	Sat Jun 17 06:35:08 2000
+++ bfd/cpu-ns32k.c	Sun Aug 20 23:17:35 2000
@@ -1,4 +1,5 @@
 /* BFD support for the ns32k architecture.
-   Copyright (C) 1990, 91, 94, 95, 96, 98, 1999 Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1994, 1995, 1996, 1998, 1999
+   Free Software Foundation, Inc.
    Almost totally rewritten by Ian Dall from initial work
    by Andrew Cagney.
--- ../binutils-000817/bfd/cpu-pj.c	Sun Sep  5 03:07:46 1999
+++ bfd/cpu-pj.c	Sun Aug 20 23:17:35 2000
@@ -1,4 +1,4 @@
 /* BFD library support routines for the Pico Java architecture.
-   Copyright (C) 1999 Free Software Foundation, Inc.
+   Copyright 1999 Free Software Foundation, Inc.
    Hacked by Steve Chamberlain of Transmeta. sac@pobox.com
 
--- ../binutils-000817/bfd/cpu-powerpc.c	Sat Jun 17 06:45:33 2000
+++ bfd/cpu-powerpc.c	Sun Aug 20 23:17:35 2000
@@ -1,4 +1,4 @@
 /* BFD PowerPC CPU definition
-   Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc.
+   Copyright 1994, 1995, 1996 Free Software Foundation, Inc.
    Contributed by Ian Lance Taylor, Cygnus Support.
 
--- ../binutils-000817/bfd/cpu-rs6000.c	Sat Jun 17 06:45:33 2000
+++ bfd/cpu-rs6000.c	Sun Aug 20 23:17:35 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for rs6000 support
-   Copyright (C) 1990, 1991 Free Software Foundation, Inc.
+   Copyright 1990, 1991 Free Software Foundation, Inc.
    FIXME: Can someone provide a transliteration of this name into ASCII?
    Using the following chars caused a compiler warning on HIUX (so I replaced
--- ../binutils-000817/bfd/cpu-sh.c	Thu Feb 17 11:33:34 2000
+++ bfd/cpu-sh.c	Sun Aug 20 23:17:35 2000
@@ -1,4 +1,4 @@
 /* BFD library support routines for the Hitachi-SH architecture.
-   Copyright (C) 1993, 97, 1998, 2000 Free Software Foundation, Inc.
+   Copyright 1993, 1997, 1998, 2000 Free Software Foundation, Inc.
    Hacked by Steve Chamberlain of Cygnus Support.
 
--- ../binutils-000817/bfd/cpu-sparc.c	Mon May  3 17:28:55 1999
+++ bfd/cpu-sparc.c	Sun Aug 20 23:17:35 2000
@@ -1,4 +1,4 @@
 /* BFD support for the SPARC architecture.
-   Copyright (C) 1992, 94, 95, 96, 1997 Free Software Foundation, Inc.
+   Copyright 1992, 1994, 1995, 1996, 1997 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/cpu-tic54x.c	Sun Apr  9 03:26:15 2000
+++ bfd/cpu-tic54x.c	Sun Aug 20 23:17:35 2000
@@ -1,4 +1,4 @@
 /* BFD support for the Texas Instruments TMS320C54X architecture.
-   Copyright 1999,2000 Free Software Foundation, Inc.
+   Copyright 1999, 2000 Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/cpu-tic80.c	Mon May  3 17:28:55 1999
+++ bfd/cpu-tic80.c	Sun Aug 20 23:17:35 2000
@@ -1,4 +1,4 @@
 /* bfd back-end for TI TMS320C80 (MVP) support
-   Copyright (C) 1996, 1999 Free Software Foundation, Inc.
+   Copyright 1996, 1999 Free Software Foundation, Inc.
    Written by Fred Fish at Cygnus support (fnf@cygnus.com)
 
--- ../binutils-000817/bfd/cpu-vax.c	Mon May  3 17:28:55 1999
+++ bfd/cpu-vax.c	Sun Aug 20 23:17:35 2000
@@ -1,4 +1,4 @@
 /* bfd back-end for vax support
-   Copyright (C) 1990, 91, 92, 93, 94 Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
    Written by Steve Chamberlain of Cygnus Support.
 
--- ../binutils-000817/bfd/cpu-w65.c	Mon Jul 12 20:28:59 1999
+++ bfd/cpu-w65.c	Sun Aug 20 23:17:35 2000
@@ -1,4 +1,4 @@
 /* BFD library support routines for the WDC 65816 architecture.
-   Copyright (C) 1995, 1999 Free Software Foundation, Inc.
+   Copyright 1995, 1999 Free Software Foundation, Inc.
    Hacked by Steve Chamberlain of Cygnus Support.
 
--- ../binutils-000817/bfd/cpu-we32k.c	Mon May  3 17:28:55 1999
+++ bfd/cpu-we32k.c	Sun Aug 20 23:17:35 2000
@@ -1,4 +1,4 @@
 /* bfd back-end for we32k support
-   Copyright (C) 1992 Free Software Foundation, Inc.
+   Copyright 1992 Free Software Foundation, Inc.
    Contributed by Brendan Kehoe (brendan@cs.widener.edu).
 
--- ../binutils-000817/bfd/cpu-z8k.c	Mon May  3 17:28:55 1999
+++ bfd/cpu-z8k.c	Sun Aug 20 23:17:35 2000
@@ -1,4 +1,4 @@
 /* BFD library support routines for the Z800n architecture.
-   Copyright (C) 1992 Free Software Foundation, Inc.
+   Copyright 1992 Free Software Foundation, Inc.
    Hacked by Steve Chamberlain of Cygnus Support.
 
--- ../binutils-000817/bfd/demo64.c	Mon May  3 17:28:55 1999
+++ bfd/demo64.c	Sun Aug 20 23:17:35 2000
@@ -1,4 +1,4 @@
 /* BFD backend for demonstration 64-bit a.out binaries.
-   Copyright (C) 1990, 91, 92, 93, 94 Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
    Written by Cygnus Support.
 
--- ../binutils-000817/bfd/dwarf2.c	Wed Apr 19 20:53:01 2000
+++ bfd/dwarf2.c	Sun Aug 20 23:17:35 2000
@@ -1,4 +1,5 @@
 /* DWARF 2 support.
-   Copyright 1994, 95, 96, 97, 98, 99, 2000 Free Software Foundation, Inc.
+   Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000
+   Free Software Foundation, Inc.
 
    Adapted from gdb/dwarf2read.c by Gavin Koch of Cygnus Solutions
--- ../binutils-000817/bfd/ecoff.c	Sat Sep 11 09:25:51 1999
+++ bfd/ecoff.c	Sun Aug 20 23:17:35 2000
@@ -1,4 +1,4 @@
 /* Generic ECOFF (Extended-COFF) routines.
-   Copyright 1990, 91, 92, 93, 94, 95, 96, 97, 98, 1999
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
    Free Software Foundation, Inc.
    Original version by Per Bothner.
--- ../binutils-000817/bfd/ecofflink.c	Mon Jul 12 20:29:02 1999
+++ bfd/ecofflink.c	Sat Aug 26 00:33:55 2000
@@ -1,4 +1,4 @@
 /* Routines to link ECOFF debugging information.
-   Copyright 1993, 94, 95, 96, 97, 1999 Free Software Foundation, Inc.
+   Copyright 1993, 1994, 1995, 1996, 1997, 1999 Free Software Foundation, Inc.
    Written by Ian Lance Taylor, Cygnus Support, <ian@cygnus.com>.
 
--- ../binutils-000817/bfd/elf-bfd.h	Thu Jul 20 13:16:18 2000
+++ bfd/elf-bfd.h	Sun Aug 20 23:32:58 2000
@@ -1,5 +1,5 @@
 /* BFD back-end data structures for ELF files.
-   Copyright (C) 1992, 93, 94, 95, 96, 97, 98, 1999, 2000 Free Software
-   Foundation, Inc.
+   Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
+   Free Software Foundation, Inc.
    Written by Cygnus Support.
 
--- ../binutils-000817/bfd/elf-hppa.h	Wed Jul 12 15:03:01 2000
+++ bfd/elf-hppa.h	Sun Aug 20 23:17:35 2000
@@ -1,4 +1,4 @@
 /* Common code for PA ELF implementations.
-   Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1999, 2000 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/elf-m10200.c	Thu Mar  2 06:40:53 2000
+++ bfd/elf-m10200.c	Sun Aug 20 23:17:35 2000
@@ -1,4 +1,4 @@
 /* Matsushita 10200 specific support for 32-bit ELF
-   Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
+   Copyright 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/elf-m10300.c	Tue Aug  1 04:49:56 2000
+++ bfd/elf-m10300.c	Sun Aug 20 23:17:35 2000
@@ -1,4 +1,4 @@
 /* Matsushita 10300 specific support for 32-bit ELF
-   Copyright (C) 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/elf.c	Fri Aug  4 05:40:29 2000
+++ bfd/elf.c	Sun Aug 20 23:17:35 2000
@@ -1,4 +1,5 @@
 /* ELF executable support for BFD.
-   Copyright 1993, 94, 95, 96, 97, 98, 99, 2000 Free Software Foundation, Inc.
+   Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
+   Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/elf32-arc.c	Mon Jul 12 20:29:09 1999
+++ bfd/elf32-arc.c	Sun Aug 20 23:17:35 2000
@@ -1,4 +1,4 @@
 /* ARC-specific support for 32-bit ELF
-   Copyright (C) 1994, 1995, 1997, 1999 Free Software Foundation, Inc.
+   Copyright 1994, 1995, 1997, 1999 Free Software Foundation, Inc.
    Contributed by Doug Evans (dje@cygnus.com).
 
--- ../binutils-000817/bfd/elf32-avr.c	Tue Jul  4 08:25:33 2000
+++ bfd/elf32-avr.c	Sun Aug 20 23:17:35 2000
@@ -1,4 +1,4 @@
 /* AVR-specific support for 32-bit ELF
-   Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1999, 2000 Free Software Foundation, Inc.
    Contributed by Denis Chertykov <denisc@overta.ru>
 
--- ../binutils-000817/bfd/elf32-cris.c	Fri Jul 21 02:21:06 2000
+++ bfd/elf32-cris.c	Sun Aug 20 23:17:35 2000
@@ -1,4 +1,4 @@
 /* CRIS-specific support for 32-bit ELF.
-   Copyright (C) 2000 Free Software Foundation, Inc.
+   Copyright 2000 Free Software Foundation, Inc.
    Contributed by Axis Communications AB.
    Written by Hans-Peter Nilsson, based on elf32-fr30.c
--- ../binutils-000817/bfd/elf32-d10v.c	Wed Jun  7 14:08:12 2000
+++ bfd/elf32-d10v.c	Sun Aug 20 23:17:35 2000
@@ -1,4 +1,4 @@
 /* D10V-specific support for 32-bit ELF
-   Copyright (C) 1996, 1998, 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1996, 1998, 1999, 2000 Free Software Foundation, Inc.
    Contributed by Martin Hunt (hunt@cygnus.com).
 
--- ../binutils-000817/bfd/elf32-d30v.c	Wed Jun  7 13:43:33 2000
+++ bfd/elf32-d30v.c	Sun Aug 20 23:17:35 2000
@@ -1,4 +1,4 @@
 /* D30V-specific support for 32-bit ELF
-   Copyright (C) 1997, 98, 99, 2000 Free Software Foundation, Inc.
+   Copyright 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
    Contributed by Martin Hunt (hunt@cygnus.com).
 
--- ../binutils-000817/bfd/elf32-fr30.c	Thu Apr 13 11:08:04 2000
+++ bfd/elf32-fr30.c	Sun Aug 20 23:17:35 2000
@@ -1,4 +1,4 @@
 /* FR30-specific support for 32-bit ELF.
-   Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1998, 1999, 2000 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/elf32-hppa.c	Sun Jul  9 17:23:07 2000
+++ bfd/elf32-hppa.c	Sun Aug 20 23:17:35 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for HP PA-RISC ELF files.
-   Copyright (C) 1990, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/bfd/elf32-hppa.h	Sun Jul  9 17:23:07 2000
+++ bfd/elf32-hppa.h	Sun Aug 20 23:17:35 2000
@@ -5,5 +5,5 @@
    February 1994.
 
-   Copyright (C) 1990, 91, 92, 93, 94, 95, 96, 98, 99, 2000
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/bfd/elf32-i370.c	Thu Jul 20 13:21:59 2000
+++ bfd/elf32-i370.c	Sun Aug 20 23:17:35 2000
@@ -1,4 +1,4 @@
 /* i370-specific support for 32-bit ELF
-   Copyright 1994, 95, 96, 97, 98, 2000 Free Software Foundation, Inc.
+   Copyright 1994, 1995, 1996, 1997, 1998, 2000 Free Software Foundation, Inc.
    Written by Ian Lance Taylor, Cygnus Support.
    Hacked by Linas Vepstas for i370 linas@linas.org
--- ../binutils-000817/bfd/elf32-i386.c	Thu Jul 20 13:21:59 2000
+++ bfd/elf32-i386.c	Sun Aug 20 23:17:35 2000
@@ -1,4 +1,4 @@
 /* Intel 80386/80486-specific support for 32-bit ELF
-   Copyright 1993, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/bfd/elf32-m32r.c	Fri Mar 31 08:16:39 2000
+++ bfd/elf32-m32r.c	Sun Aug 20 23:17:35 2000
@@ -1,4 +1,4 @@
 /* M32R-specific support for 32-bit ELF.
-   Copyright (C) 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/elf32-m68hc11.c	Mon Jun 19 11:22:37 2000
+++ bfd/elf32-m68hc11.c	Sun Aug 20 23:17:36 2000
@@ -1,4 +1,4 @@
 /* Motorola 68HC11-specific support for 32-bit ELF
-   Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1999, 2000 Free Software Foundation, Inc.
    Contributed by Stephane Carrez (stcarrez@worldnet.fr)
    (Heavily copied from the D10V port by Martin Hunt (hunt@cygnus.com))
--- ../binutils-000817/bfd/elf32-m68hc12.c	Mon Jun 19 11:22:37 2000
+++ bfd/elf32-m68hc12.c	Sun Aug 20 23:17:36 2000
@@ -1,4 +1,4 @@
 /* Motorola 68HC12-specific support for 32-bit ELF
-   Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1999, 2000 Free Software Foundation, Inc.
    Contributed by Stephane Carrez (stcarrez@worldnet.fr)
    (Heavily copied from the D10V port by Martin Hunt (hunt@cygnus.com))
--- ../binutils-000817/bfd/elf32-m68k.c	Thu Jul 20 13:21:59 2000
+++ bfd/elf32-m68k.c	Sun Aug 20 23:17:36 2000
@@ -1,4 +1,4 @@
 /* Motorola 68k series support for 32-bit ELF
-   Copyright 1993, 95, 96, 97, 98, 1999 Free Software Foundation, Inc.
+   Copyright 1993, 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/elf32-mips.c	Mon Jul 24 06:51:35 2000
+++ bfd/elf32-mips.c	Sun Aug 20 23:17:36 2000
@@ -1,4 +1,5 @@
 /* MIPS-specific support for 32-bit ELF
-   Copyright 1993, 94, 95, 96, 97, 98, 1999 Free Software Foundation, Inc.
+   Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999
+   Free Software Foundation, Inc.
 
    Most of the information added by Ian Lance Taylor, Cygnus Support,
--- ../binutils-000817/bfd/elf32-ppc.c	Thu Jul 20 13:21:59 2000
+++ bfd/elf32-ppc.c	Sun Aug 20 23:17:36 2000
@@ -1,4 +1,4 @@
 /* PowerPC-specific support for 32-bit ELF
-   Copyright 1994, 95, 96, 97, 98, 1999 Free Software Foundation, Inc.
+   Copyright 1994, 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
    Written by Ian Lance Taylor, Cygnus Support.
 
--- ../binutils-000817/bfd/elf32-sh.c	Sat Aug 12 00:35:41 2000
+++ bfd/elf32-sh.c	Sun Aug 20 23:17:36 2000
@@ -1,4 +1,4 @@
 /* Hitachi SH specific support for 32-bit ELF
-   Copyright 1996, 97, 98, 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
    Contributed by Ian Lance Taylor, Cygnus Support.
 
--- ../binutils-000817/bfd/elf32-sparc.c	Thu Jul 20 13:21:59 2000
+++ bfd/elf32-sparc.c	Sun Aug 20 23:17:36 2000
@@ -1,4 +1,4 @@
 /* SPARC-specific support for 32-bit ELF
-   Copyright (C) 1993, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/bfd/elf32-v850.c	Thu Mar  2 06:40:54 2000
+++ bfd/elf32-v850.c	Sun Aug 20 23:17:36 2000
@@ -1,4 +1,4 @@
 /* V850-specific support for 32-bit ELF
-   Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
+   Copyright 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/elf64-alpha.c	Thu Jul 20 13:21:59 2000
+++ bfd/elf64-alpha.c	Sun Aug 20 23:17:36 2000
@@ -1,4 +1,4 @@
 /* Alpha specific support for 64-bit ELF
-   Copyright 1996, 97, 98, 1999 Free Software Foundation, Inc.
+   Copyright 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
    Contributed by Richard Henderson <rth@tamu.edu>.
 
--- ../binutils-000817/bfd/elf64-hppa.h	Sun Jul  9 17:23:07 2000
+++ bfd/elf64-hppa.h	Sun Aug 20 23:17:36 2000
@@ -1,5 +1,5 @@
 /* ELF64/HPPA support
 
-   Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1999, 2000 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/elf64-sparc.c	Thu Aug 17 03:42:21 2000
+++ bfd/elf64-sparc.c	Sun Aug 20 23:17:36 2000
@@ -1,4 +1,4 @@
 /* SPARC-specific support for 64-bit ELF
-   Copyright (C) 1993, 95, 96, 97, 98, 99, 2000
+   Copyright 1993, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/bfd/elfcode.h	Tue Jul 11 16:08:19 2000
+++ bfd/elfcode.h	Sun Aug 20 23:35:13 2000
@@ -1,5 +1,5 @@
 /* ELF executable support for BFD.
-   Copyright 1991, 92, 93, 94, 95, 96, 97, 98, 1999, 2000 Free
-   Software Foundation, Inc.
+   Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
+   Free Software Foundation, Inc.
 
    Written by Fred Fish @ Cygnus Support, from information published
--- ../binutils-000817/bfd/elfcore.h	Mon Jun 19 11:22:37 2000
+++ bfd/elfcore.h	Sun Aug 20 23:17:36 2000
@@ -1,4 +1,4 @@
 /* ELF core file support for BFD.
-   Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
+   Copyright 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/elflink.c	Thu Aug 17 04:02:16 2000
+++ bfd/elflink.c	Sun Aug 20 23:17:36 2000
@@ -1,4 +1,4 @@
 /* ELF linking support for BFD.
-   Copyright 1995, 96, 97, 98, 99, 2000 Free Software Foundation, Inc.
+   Copyright 1995, 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/format.c	Thu Jul 20 10:31:39 2000
+++ bfd/format.c	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,5 @@
 /* Generic BFD support for file formats.
-   Copyright (C) 1990, 91, 92, 93, 94, 95, 1999 Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1999
+   Free Software Foundation, Inc.
    Written by Cygnus Support.
 
--- ../binutils-000817/bfd/freebsd.h	Thu Mar  2 12:38:33 2000
+++ bfd/freebsd.h	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,4 @@
 /* BFD back-end definitions used by all FreeBSD targets.
-   Copyright (C) 1990, 1991, 1992, 1996, 2000 Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1992, 1996, 2000 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/gen-aout.c	Mon May  3 17:28:57 1999
+++ bfd/gen-aout.c	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,4 @@
 /* Generate parameters for an a.out system.
-   Copyright (C) 1990, 91, 92, 93, 94, 98 Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1992, 1993, 1994, 1998 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/hash.c	Mon Jul 12 05:49:36 1999
+++ bfd/hash.c	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,4 @@
 /* hash.c -- hash table routines for BFD
-   Copyright (C) 1993, 94, 95, 97, 1999 Free Software Foundation, Inc.
+   Copyright 1993, 1994, 1995, 1997, 1999 Free Software Foundation, Inc.
    Written by Steve Chamberlain <sac@cygnus.com>
 
--- ../binutils-000817/bfd/host-aout.c	Mon May  3 17:28:57 1999
+++ bfd/host-aout.c	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,4 @@
 /* BFD backend for local host's a.out binaries
-   Copyright (C) 1990, 91, 92, 93, 94 Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
    Written by Cygnus Support.  Probably John Gilmore's fault.
 
--- ../binutils-000817/bfd/hp300hpux.c	Thu Mar  2 12:38:33 2000
+++ bfd/hp300hpux.c	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,5 @@
 /* BFD backend for hp-ux 9000/300
-   Copyright (C) 1990, 91, 94, 95, 97, 99, 2000 Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1994, 1995, 1997, 1999, 2000
+   Free Software Foundation, Inc.
    Written by Glenn Engel.
 
--- ../binutils-000817/bfd/hppabsd-core.c	Tue Jul 20 00:55:16 1999
+++ bfd/hppabsd-core.c	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for HPPA BSD core files.
-   Copyright 1993, 94, 95, 97, 1998 Free Software Foundation, Inc.
+   Copyright 1993, 1994, 1995, 1997, 1998 Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/hpux-core.c	Tue Jul 20 00:55:16 1999
+++ bfd/hpux-core.c	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for HP/UX core files.
-   Copyright 1993, 94, 95, 96, 97, 1998 Free Software Foundation, Inc.
+   Copyright 1993, 1994, 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
    Written by Stu Grossman, Cygnus Support.
    Converted to back-end form by Ian Lance Taylor, Cygnus SUpport
--- ../binutils-000817/bfd/i386aout.c	Mon May  3 17:28:57 1999
+++ bfd/i386aout.c	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,5 @@
 /* BFD back-end for i386 a.out binaries.
-   Copyright 1990, 91, 92, 94, 95, 96, 1997 Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1992, 1994, 1995, 1996, 1997
+   Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/i386bsd.c	Mon May  3 17:28:57 1999
+++ bfd/i386bsd.c	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for i386 a.out binaries under BSD.
-   Copyright (C) 1990, 1991, 1992 Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1992 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/i386dynix.c	Mon May  3 17:28:57 1999
+++ bfd/i386dynix.c	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for i386 a.out binaries under dynix.
-   Copyright (C) 1994, 1995 Free Software Foundation, Inc.
+   Copyright 1994, 1995 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/i386freebsd.c	Mon May  3 17:28:57 1999
+++ bfd/i386freebsd.c	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for FreeBSD/386 a.out-ish binaries.
-   Copyright (C) 1990, 1991, 1992, 1996 Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1992, 1996 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/i386linux.c	Mon Jul 12 05:49:37 1999
+++ bfd/i386linux.c	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for linux flavored i386 a.out binaries.
-   Copyright (C) 1992, 93, 94, 95, 96, 97, 98, 1999
+   Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
    Free Software Foundation, Inc.
 
--- ../binutils-000817/bfd/i386lynx.c	Mon Jul 12 20:29:41 1999
+++ bfd/i386lynx.c	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for i386 a.out binaries under LynxOS.
-   Copyright (C) 1990, 91, 92, 93, 94, 95, 96, 1999
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1999
    Free Software Foundation, Inc.
 
--- ../binutils-000817/bfd/i386mach3.c	Mon May  3 17:28:57 1999
+++ bfd/i386mach3.c	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for i386 a.out binaries.
-   Copyright (C) 1990, 91, 93, 94, 95, 1997 Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1993, 1994, 1995, 1997 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/i386msdos.c	Tue Jul 20 00:55:16 1999
+++ bfd/i386msdos.c	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for MS-DOS executables.
-   Copyright 1990, 91, 92, 93, 94, 95, 96, 97, 98, 1999
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
    Free Software Foundation, Inc.
    Written by Bryan Ford of the University of Utah.
--- ../binutils-000817/bfd/i386netbsd.c	Mon May  3 17:28:57 1999
+++ bfd/i386netbsd.c	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,5 @@
 /* BFD back-end for NetBSD/386 a.out-ish binaries.
-   Copyright (C) 1990, 91, 92, 94, 95, 96, 1998 Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1992, 1994, 1995, 1996, 1998
+   Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/i386os9k.c	Tue Jul 20 00:55:16 1999
+++ bfd/i386os9k.c	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,5 @@
 /* BFD back-end for os9000 i386 binaries.
-   Copyright 1990, 91, 92, 93, 94, 95, 98, 1999 Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999
+   Free Software Foundation, Inc.
    Written by Cygnus Support.
 
--- ../binutils-000817/bfd/ieee.c	Tue Aug  8 05:46:11 2000
+++ bfd/ieee.c	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for ieee-695 objects.
-   Copyright (C) 1990, 91, 92, 93, 94, 95, 96, 97, 98, 1999
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
    Free Software Foundation, Inc.
 
--- ../binutils-000817/bfd/init.c	Mon May  3 17:28:57 1999
+++ bfd/init.c	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,4 @@
 /* bfd initialization stuff
-   Copyright (C) 1990, 91, 92, 93, 94, 1995 Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
    Written by Steve Chamberlain of Cygnus Support.
 
--- ../binutils-000817/bfd/irix-core.c	Tue Jul 20 00:55:16 1999
+++ bfd/irix-core.c	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for Irix core files.
-   Copyright 1993, 94, 95, 96, 1997 Free Software Foundation, Inc.
+   Copyright 1993, 1994, 1995, 1996, 1997 Free Software Foundation, Inc.
    Written by Stu Grossman, Cygnus Support.
    Converted to back-end form by Ian Lance Taylor, Cygnus Support
--- ../binutils-000817/bfd/libaout.h	Fri Jul 21 02:21:07 2000
+++ bfd/libaout.h	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,4 @@
 /* BFD back-end data structures for a.out (and similar) files.
-   Copyright 1990, 91, 92, 93, 94, 95, 96, 97, 1998
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998
    Free Software Foundation, Inc.
    Written by Cygnus Support.
--- ../binutils-000817/bfd/libbfd-in.h	Sat Jul  8 22:08:43 2000
+++ bfd/libbfd-in.h	Sun Aug 20 23:17:37 2000
@@ -1,5 +1,5 @@
 /* libbfd.h -- Declarations used by bfd library *implementation*.
    (This include file is not for users of the library.)
-   Copyright 1990, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
    Written by Cygnus Support.
--- ../binutils-000817/bfd/libbfd.c	Tue Aug  1 04:49:56 2000
+++ bfd/libbfd.c	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,4 @@
 /* Assorted BFD support routines, only used internally.
-   Copyright 1990, 91, 92, 93, 94, 95, 96, 97, 98, 1999
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
    Free Software Foundation, Inc.
    Written by Cygnus Support.
--- ../binutils-000817/bfd/libbfd.h	Tue Aug  1 11:45:29 2000
+++ bfd/libbfd.h	Sun Aug 20 23:17:37 2000
@@ -1,5 +1,5 @@
 /* libbfd.h -- Declarations used by bfd library *implementation*.
    (This include file is not for users of the library.)
-   Copyright 1990, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
    Written by Cygnus Support.
--- ../binutils-000817/bfd/libcoff-in.h	Sat Jun 17 06:40:50 2000
+++ bfd/libcoff-in.h	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,4 @@
 /* BFD COFF object file private structure.
-   Copyright (C) 1990, 91, 92, 93, 94, 95, 96, 97, 98, 1999
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
    Free Software Foundation, Inc.
    Written by Cygnus Support.
--- ../binutils-000817/bfd/libcoff.h	Sat Jul  8 22:08:43 2000
+++ bfd/libcoff.h	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,4 @@
 /* BFD COFF object file private structure.
-   Copyright (C) 1990, 91, 92, 93, 94, 95, 96, 97, 98, 1999
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
    Free Software Foundation, Inc.
    Written by Cygnus Support.
--- ../binutils-000817/bfd/libecoff.h	Sat Dec 11 05:51:35 1999
+++ bfd/libecoff.h	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,4 @@
 /* BFD ECOFF object file private structure.
-   Copyright (C) 1993, 94, 95, 96, 97, 1999 Free Software Foundation, Inc.
+   Copyright 1993, 1994, 1995, 1996, 1997, 1999 Free Software Foundation, Inc.
    Written by Ian Lance Taylor, Cygnus Support.
 
--- ../binutils-000817/bfd/libhppa.h	Sun Jul  9 17:23:07 2000
+++ bfd/libhppa.h	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,4 @@
 /* HP PA-RISC SOM object file format:  definitions internal to BFD.
-   Copyright (C) 1990, 91, 92, 93, 94, 95, 96, 98, 99, 2000
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/bfd/libieee.h	Mon May  3 17:28:57 1999
+++ bfd/libieee.h	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,5 @@
 /* IEEE-695 object file formats:  definitions internal to BFD.
-   Copyright (C) 1990, 91, 92, 93, 94, 95, 1996 Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996
+   Free Software Foundation, Inc.
    Written by Cygnus Support.  Mostly Steve Chamberlain's fault.
 
--- ../binutils-000817/bfd/libnlm.h	Mon May  3 17:28:57 1999
+++ bfd/libnlm.h	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,4 @@
 /* BFD back-end data structures for NLM (NetWare Loadable Modules) files.
-   Copyright (C) 1993 Free Software Foundation, Inc.
+   Copyright 1993 Free Software Foundation, Inc.
    Written by Cygnus Support.
 
--- ../binutils-000817/bfd/liboasys.h	Mon May  3 17:28:57 1999
+++ bfd/liboasys.h	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,5 @@
 /* BFD internal declarations for Oasys file format handling.
-   Copyright (C) 1990, 91, 92, 93, 94, 95, 1997 Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1997
+   Free Software Foundation, Inc.
    Scrawled by Steve Chamberlain of Cygnus Support.
 
--- ../binutils-000817/bfd/linker.c	Sat Jan 15 05:13:40 2000
+++ bfd/linker.c	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,4 @@
 /* linker.c -- BFD linker routines
-   Copyright (C) 1993, 94, 95, 96, 97, 98, 1999
+   Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999
    Free Software Foundation, Inc.
    Written by Steve Chamberlain and Ian Lance Taylor, Cygnus Support
--- ../binutils-000817/bfd/m68k4knetbsd.c	Mon May  3 17:28:57 1999
+++ bfd/m68k4knetbsd.c	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for NetBSD/m68k a.out-ish binaries.
-   Copyright (C) 1990, 91, 92, 95, 1998 Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1992, 1995, 1998 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/m68klinux.c	Mon Jul 12 20:29:48 1999
+++ bfd/m68klinux.c	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for linux flavored m68k a.out binaries.
-   Copyright (C) 1992, 93, 94, 95, 96, 97, 98, 1999
+   Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
    Free Software Foundation, Inc.
 
--- ../binutils-000817/bfd/m68klynx.c	Mon May  3 17:28:57 1999
+++ bfd/m68klynx.c	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for m68k binaries under LynxOS.
-   Copyright (C) 1990, 1991, 1992 Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1992 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/m68knetbsd.c	Mon May  3 17:28:57 1999
+++ bfd/m68knetbsd.c	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,5 @@
 /* BFD back-end for NetBSD/m68k a.out-ish binaries.
-   Copyright (C) 1990, 91, 92, 94, 95, 97, 1998 Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1992, 1994, 1995, 1997, 1998
+   Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/m88kmach3.c	Mon May  3 17:28:57 1999
+++ bfd/m88kmach3.c	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for Motorola m88k a.out (Mach 3) binaries.
-   Copyright (C) 1990, 1991, 1993, 1994 Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1993, 1994 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/mipsbsd.c	Tue Jul 20 00:55:16 1999
+++ bfd/mipsbsd.c	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,4 @@
 /* BFD backend for MIPS BSD (a.out) binaries.
-   Copyright (C) 1993, 94, 95, 97, 98, 1999 Free Software Foundation, Inc.
+   Copyright 1993, 1994, 1995, 1997, 1998, 1999 Free Software Foundation, Inc.
    Written by Ralph Campbell.
 
--- ../binutils-000817/bfd/netbsd-core.c	Tue Jul 20 00:55:16 1999
+++ bfd/netbsd-core.c	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,5 @@
 /* BFD back end for NetBSD style core files
-   Copyright 1988, 89, 91, 92, 93, 96, 1998 Free Software Foundation, Inc.
+   Copyright 1988, 1989, 1991, 1992, 1993, 1996, 1998
+   Free Software Foundation, Inc.
    Written by Paul Kranenburg, EUR
 
--- ../binutils-000817/bfd/netbsd.h	Thu Mar  2 12:38:33 2000
+++ bfd/netbsd.h	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,4 @@
 /* BFD back-end definitions used by all NetBSD targets.
-   Copyright (C) 1990, 91, 92, 94, 95, 96, 97, 98, 2000
+   Copyright 1990, 1991, 1992, 1994, 1995, 1996, 1997, 1998, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/bfd/newsos3.c	Mon May  3 17:28:57 1999
+++ bfd/newsos3.c	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for NewsOS3 (Sony, 68k) binaries.
-   Copyright (C) 1990, 91, 92, 93, 94 Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/nlm-target.h	Tue Jul 20 00:55:16 1999
+++ bfd/nlm-target.h	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,4 @@
 /* Target definitions for 32/64-bit NLM (NetWare Loadable Module)
-   Copyright (C) 1993, 94, 95, 1997 Free Software Foundation, Inc.
+   Copyright 1993, 1994, 1995, 1997 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/nlm.c	Mon May  3 17:28:57 1999
+++ bfd/nlm.c	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,4 @@
 /* NLM (NetWare Loadable Module) executable support for BFD.
-   Copyright (C) 1993 Free Software Foundation, Inc.
+   Copyright 1993 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/nlm32-alpha.c	Mon May  3 17:28:57 1999
+++ bfd/nlm32-alpha.c	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,4 @@
 /* Support for 32-bit Alpha NLM (NetWare Loadable Module)
-   Copyright (C) 1993 Free Software Foundation, Inc.
+   Copyright 1993 Free Software Foundation, Inc.
    Written by Ian Lance Taylor, Cygnus Support.
 
--- ../binutils-000817/bfd/nlm32-i386.c	Mon May  3 17:28:58 1999
+++ bfd/nlm32-i386.c	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,4 @@
 /* Support for 32-bit i386 NLM (NetWare Loadable Module)
-   Copyright (C) 1993 Free Software Foundation, Inc.
+   Copyright 1993 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/nlm32-ppc.c	Mon Jul 12 20:29:51 1999
+++ bfd/nlm32-ppc.c	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,4 @@
 /* Support for 32-bit PowerPC NLM (NetWare Loadable Module)
-   Copyright (C) 1994, 1995, 1999 Free Software Foundation, Inc.
+   Copyright 1994, 1995, 1999 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/nlm32-sparc.c	Mon Jul 12 20:29:52 1999
+++ bfd/nlm32-sparc.c	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,4 @@
 /* Support for 32-bit SPARC NLM (NetWare Loadable Module)
-   Copyright (C) 1993, 1994, 1995, 1999 Free Software Foundation, Inc.
+   Copyright 1993, 1994, 1995, 1999 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/nlm32.c	Mon May  3 17:28:58 1999
+++ bfd/nlm32.c	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,4 @@
 /* NLM (NetWare Loadable Module) 32-bit executable support for BFD.
-   Copyright (C) 1993 Free Software Foundation, Inc.
+   Copyright 1993 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/nlm64.c	Mon May  3 17:28:58 1999
+++ bfd/nlm64.c	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,4 @@
 /* NLM (NetWare Loadable Module) 64-bit executable support for BFD.
-   Copyright (C) 1993 Free Software Foundation, Inc.
+   Copyright 1993 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/nlmcode.h	Mon Jul 12 20:29:54 1999
+++ bfd/nlmcode.h	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,4 @@
 /* NLM (NetWare Loadable Module) executable support for BFD.
-   Copyright (C) 1993, 94, 95, 98, 1999 Free Software Foundation, Inc.
+   Copyright 1993, 1994, 1995, 1998, 1999 Free Software Foundation, Inc.
 
    Written by Fred Fish @ Cygnus Support, using ELF support as the
--- ../binutils-000817/bfd/nlmswap.h	Mon May  3 17:28:58 1999
+++ bfd/nlmswap.h	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,4 @@
 /* NLM (NetWare Loadable Module) swapping routines for BFD.
-   Copyright (C) 1993 Free Software Foundation, Inc.
+   Copyright 1993 Free Software Foundation, Inc.
 
    Written by Fred Fish @ Cygnus Support, using ELF support as the
--- ../binutils-000817/bfd/ns32knetbsd.c	Mon May  3 17:28:58 1999
+++ bfd/ns32knetbsd.c	Sun Aug 20 23:17:37 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for NetBSD/ns32k a.out-ish binaries.
-   Copyright (C) 1990, 91, 92, 94, 95, 1998 Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1992, 1994, 1995, 1998 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/oasys.c	Sat Dec 11 05:51:35 1999
+++ bfd/oasys.c	Sun Aug 20 23:17:38 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for oasys objects.
-   Copyright 1990, 91, 92, 93, 94, 95, 96, 97, 98, 1999
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
    Free Software Foundation, Inc.
    Written by Steve Chamberlain of Cygnus Support, <sac@cygnus.com>.
--- ../binutils-000817/bfd/opncls.c	Fri May 26 17:32:26 2000
+++ bfd/opncls.c	Sun Aug 20 23:17:38 2000
@@ -1,4 +1,4 @@
 /* opncls.c -- open and close a BFD.
-   Copyright (C) 1990, 91, 92, 93, 94, 95, 96, 1997
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997
    Free Software Foundation, Inc.
 
--- ../binutils-000817/bfd/osf-core.c	Tue Jul 20 00:55:16 1999
+++ bfd/osf-core.c	Sun Aug 20 23:17:38 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for OSF/1 core files.
-   Copyright 1993, 94, 95, 97, 1998 Free Software Foundation, Inc.
+   Copyright 1993, 1994, 1995, 1997, 1998 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/pc532-mach.c	Thu Mar  2 12:38:33 2000
+++ bfd/pc532-mach.c	Sun Aug 20 23:17:38 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for Mach3/532 a.out-ish binaries.
-   Copyright (C) 1990, 1991, 1992, 1994, 2000 Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1992, 1994, 2000 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/pe-mips.c	Thu Mar  2 07:39:07 2000
+++ bfd/pe-mips.c	Sun Aug 20 23:17:38 2000
@@ -1,4 +1,5 @@
 /* BFD back-end for MIPS PE COFF files.
-   Copyright (C) 1990, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000 Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
+   Free Software Foundation, Inc.
    Modified from coff-i386.c by DJ Delorie, dj@cygnus.com
 
--- ../binutils-000817/bfd/peigen.c	Tue May 16 12:10:00 2000
+++ bfd/peigen.c	Sun Aug 20 23:17:38 2000
@@ -1,4 +1,4 @@
 /* Support for the generic parts of PE/PEI; the common executable parts.
-   Copyright 1995, 96, 97, 98, 99, 2000 Free Software Foundation, Inc.
+   Copyright 1995, 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
    Written by Cygnus Solutions.
 
--- ../binutils-000817/bfd/ptrace-core.c	Tue Jul 20 00:55:16 1999
+++ bfd/ptrace-core.c	Sun Aug 20 23:17:38 2000
@@ -1,4 +1,4 @@
 /* BFD backend for core files which use the ptrace_user structure
-   Copyright 1993, 94, 95, 96, 1998 Free Software Foundation, Inc.
+   Copyright 1993, 1994, 1995, 1996, 1998 Free Software Foundation, Inc.
    The structure of this file is based on trad-core.c written by John Gilmore
    of Cygnus Support.
--- ../binutils-000817/bfd/reloc.c	Tue Aug  1 11:45:29 2000
+++ bfd/reloc.c	Sun Aug 20 23:17:38 2000
@@ -1,4 +1,4 @@
 /* BFD support for handling relocation entries.
-   Copyright (C) 1990, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
    Written by Cygnus Support.
--- ../binutils-000817/bfd/reloc16.c	Tue Jul  4 03:49:37 2000
+++ bfd/reloc16.c	Sun Aug 20 23:17:38 2000
@@ -1,4 +1,4 @@
 /* 8 and 16 bit COFF relocation functions, for BFD.
-   Copyright 1990, 91, 92, 93, 94, 95, 96, 97, 98, 2000
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2000
    Free Software Foundation, Inc.
    Written by Cygnus Support.
--- ../binutils-000817/bfd/riscix.c	Mon Jul 12 20:30:03 1999
+++ bfd/riscix.c	Sun Aug 20 23:17:38 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for RISC iX (Acorn, arm) binaries.
-   Copyright (C) 1994, 95, 96, 97, 98, 1999 Free Software Foundation, Inc.
+   Copyright 1994, 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
    Contributed by Richard Earnshaw (rwe@pegasus.esprit.ec.org)
    
--- ../binutils-000817/bfd/rs6000-core.c	Tue Jun 20 05:33:35 2000
+++ bfd/rs6000-core.c	Sun Aug 20 23:17:38 2000
@@ -1,4 +1,4 @@
 /* IBM RS/6000 "XCOFF" back-end for BFD.
-   Copyright 1990, 91, 92, 93, 94, 95, 96, 97, 98, 2000
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2000
    Free Software Foundation, Inc.
    FIXME: Can someone provide a transliteration of this name into ASCII?
--- ../binutils-000817/bfd/section.c	Fri Aug  4 05:40:29 2000
+++ bfd/section.c	Sun Aug 20 23:17:38 2000
@@ -1,4 +1,4 @@
 /* Object file "section" support for the BFD library.
-   Copyright (C) 1990, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
    Written by Cygnus Support.
--- ../binutils-000817/bfd/som.c	Sat Aug  5 01:17:37 2000
+++ bfd/som.c	Sun Aug 20 23:17:39 2000
@@ -1,4 +1,4 @@
 /* bfd back-end for HP PA-RISC SOM objects.
-   Copyright (C) 1990, 91, 92, 93, 94, 95, 96, 97, 1998
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998
    Free Software Foundation, Inc.
 
--- ../binutils-000817/bfd/som.h	Mon May  3 17:28:58 1999
+++ bfd/som.h	Sun Aug 20 23:17:39 2000
@@ -1,4 +1,4 @@
 /* HP PA-RISC SOM object file format:  definitions internal to BFD.
-   Copyright (C) 1990, 91, 92, 93, 94, 95, 96, 1998
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1998
    Free Software Foundation, Inc.
 
--- ../binutils-000817/bfd/sparclinux.c	Mon Jul 12 20:30:05 1999
+++ bfd/sparclinux.c	Sun Aug 20 23:17:39 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for linux flavored sparc a.out binaries.
-   Copyright (C) 1992, 93, 94, 95, 96, 97, 98, 1999
+   Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
    Free Software Foundation, Inc.
 
--- ../binutils-000817/bfd/sparclynx.c	Mon May  3 17:28:58 1999
+++ bfd/sparclynx.c	Sun Aug 20 23:17:39 2000
@@ -1,4 +1,4 @@
 /* BFD support for Sparc binaries under LynxOS.
-   Copyright (C) 1990, 91, 92, 93, 94, 95, 97, 1998
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1997, 1998
    Free Software Foundation, Inc.
 
--- ../binutils-000817/bfd/sparcnetbsd.c	Mon May  3 17:28:58 1999
+++ bfd/sparcnetbsd.c	Sun Aug 20 23:17:39 2000
@@ -1,4 +1,5 @@
 /* BFD back-end for NetBSD/sparc a.out-ish binaries.
-   Copyright (C) 1990, 91, 92, 94, 95, 97, 1998 Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1992, 1994, 1995, 1997, 1998
+   Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/srec.c	Fri Jul  7 09:26:55 2000
+++ bfd/srec.c	Sun Aug 20 23:17:39 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for s-record objects.
-   Copyright 1990, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
    Written by Steve Chamberlain of Cygnus Support <sac@cygnus.com>.
--- ../binutils-000817/bfd/stab-syms.c	Mon May  3 17:28:58 1999
+++ bfd/stab-syms.c	Sun Aug 20 23:17:39 2000
@@ -1,4 +1,5 @@
 /* Table of stab names for the BFD library.
-   Copyright (C) 1990, 91, 92, 93, 94, 95, 1996 Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996
+   Free Software Foundation, Inc.
    Written by Cygnus Support.
 
--- ../binutils-000817/bfd/sunos.c	Mon Jul 12 20:30:07 1999
+++ bfd/sunos.c	Sun Aug 20 23:17:39 2000
@@ -1,4 +1,4 @@
 /* BFD backend for SunOS binaries.
-   Copyright (C) 1990, 91, 92, 93, 94, 95, 96, 97, 98, 1999
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
    Free Software Foundation, Inc.
    Written by Cygnus Support.
--- ../binutils-000817/bfd/syms.c	Mon Jul 10 15:14:13 2000
+++ bfd/syms.c	Sun Aug 20 23:17:39 2000
@@ -1,4 +1,4 @@
 /* Generic symbol-table support for the BFD library.
-   Copyright (C) 1990, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
    Written by Cygnus Support.
--- ../binutils-000817/bfd/sysdep.h	Thu Jun  1 04:32:06 2000
+++ bfd/sysdep.h	Sun Aug 20 23:17:39 2000
@@ -1,4 +1,4 @@
 /* sysdep.h -- handle host dependencies for the BFD library
-   Copyright 1995, 96, 97, 98, 99, 2000 Free Software Foundation, Inc.
+   Copyright 1995, 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
    Written by Cygnus Support.
 
--- ../binutils-000817/bfd/targets.c	Sat Jul 29 07:10:19 2000
+++ bfd/targets.c	Sun Aug 20 23:17:39 2000
@@ -1,4 +1,4 @@
 /* Generic target-file-type support for the BFD library.
-   Copyright 1990, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
    Written by Cygnus Support.
--- ../binutils-000817/bfd/tekhex.c	Tue Jul 20 00:55:16 1999
+++ bfd/tekhex.c	Sun Aug 20 23:17:40 2000
@@ -1,4 +1,4 @@
 /* BFD backend for Extended Tektronix Hex Format  objects.
-   Copyright (C) 1992, 93, 94, 95, 96, 97, 98, 1999
+   Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
    Free Software Foundation, Inc.
    Written by Steve Chamberlain of Cygnus Support <sac@cygnus.com>.
--- ../binutils-000817/bfd/trad-core.c	Thu Jun  1 20:09:30 2000
+++ bfd/trad-core.c	Sun Aug 20 23:17:40 2000
@@ -1,4 +1,4 @@
 /* BFD back end for traditional Unix core files (U-area and raw sections)
-   Copyright 1988, 89, 91, 92, 93, 94, 95, 96, 98, 99, 2000
+   Copyright 1988, 1989, 1991, 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000
    Free Software Foundation, Inc.
    Written by John Gilmore of Cygnus Support.
--- ../binutils-000817/bfd/vaxnetbsd.c	Mon May  3 17:28:58 1999
+++ bfd/vaxnetbsd.c	Sun Aug 20 23:17:40 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for NetBSD/VAX a.out-ish binaries.
-   Copyright (C) 1998 Free Software Foundation, Inc.
+   Copyright 1998 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/bfd/versados.c	Mon May  8 20:00:26 2000
+++ bfd/versados.c	Sun Aug 20 23:17:40 2000
@@ -1,4 +1,4 @@
 /* BFD back-end for VERSAdos-E objects.
-   Copyright 1995, 96, 97, 98, 99, 2000 Free Software Foundation, Inc.
+   Copyright 1995, 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
    Written by Steve Chamberlain of Cygnus Support <sac@cygnus.com>.
 
--- ../binutils-000817/bfd/vms.c	Mon May  1 15:02:57 2000
+++ bfd/vms.c	Sun Aug 20 23:17:40 2000
@@ -1,5 +1,5 @@
 /* vms.c -- BFD back-end for VAX (openVMS/VAX) and
    EVAX (openVMS/Alpha) files.
-   Copyright 1996, 97, 98, 99, 2000 Free Software Foundation, Inc.
+   Copyright 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
 
    Written by Klaus K"ampf (kkaempf@rmi.de)

# bfd/doc
2000-08-25  Rodney Brown  <RodneyBrown@mynd.com>

	* bfd.texinfo chew.c: Standardize FSF Copyright statements.

--- ../binutils-000817/bfd/doc/bfd.texinfo	Mon May  3 17:28:58 1999
+++ bfd/doc/bfd.texinfo	Sun Aug 20 23:17:34 2000
@@ -29,5 +29,5 @@
 This file documents the BFD library.
 
-Copyright (C) 1991 Free Software Foundation, Inc.
+Copyright 1991 Free Software Foundation, Inc.
 
 Permission is granted to make and distribute verbatim copies of
--- ../binutils-000817/bfd/doc/chew.c	Sat Jul  8 22:00:26 2000
+++ bfd/doc/chew.c	Sun Aug 20 23:17:34 2000
@@ -1,4 +1,4 @@
 /* chew
-   Copyright (C) 1990, 91, 92, 93, 94, 95, 96, 1998, 2000
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1998, 2000
    Free Software Foundation, Inc.
    Contributed by steve chamberlain @cygnus

# binutils
2000-08-25  Rodney Brown  <RodneyBrown@mynd.com>

	* addr2line.1 addr2line.c: Standardize FSF Copyright statements.
	* ar.1 ar.c arlex.c arlex.l: Likewise.
	* arparse.c arparse.y arsup.c binutils.texi bucomm.c: Likewise.
	* bucomm.h budbg.h coffdump.c coffgrok.c cxxfilt.man: Likewise.
	* debug.c debug.h deflex.c deflex.l defparse.c defparse.y: Likewise.
	* dlltool.c dlltool.h dllwrap.c filemode.c ieee.c: Likewise.
	* nlmconv.1 nlmconv.c nlmconv.h nlmheader.c nlmheader.y: Likewise.
	* nm.1 nm.c objcopy.1 objcopy.c objdump.1 objdump.c: Likewise.
	* po/binutils.pot: Likewise.
	* prdbg.c ranlib.1 rcparse.c rdcoff.c rddbg.c readelf.c: Likewise.
	* rename.c size.1 size.c srconv.c stabs.c strings.1: Likewise.
	* strings.c strip.1 sysdump.c sysinfo.c version.c: Likewise.
	* windres.c wrstabs.c: Likewise.

--- ../binutils-000817/binutils/addr2line.1	Mon May  3 17:29:09 1999
+++ binutils/addr2line.1	Sun Aug 20 23:17:28 2000
@@ -1,3 +1,3 @@
-.\" Copyright (c) 1997 Free Software Foundation
+.\" Copyright 1997 Free Software Foundation
 .\" See COPYING for conditions for redistribution
 .TH addr2line 1 "27 March 1997" "Cygnus Solutions" "GNU Development Tools"
--- ../binutils-000817/binutils/addr2line.c	Sat Aug 12 10:47:48 2000
+++ binutils/addr2line.c	Sun Aug 20 23:17:28 2000
@@ -1,4 +1,4 @@
 /* addr2line.c -- convert addresses to line number and function name
-   Copyright 1997, 98, 99, 2000 Free Software Foundation, Inc.
+   Copyright 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
    Contributed by Ulrich Lauther <Ulrich.Lauther@zfe.siemens.de>
 
--- ../binutils-000817/binutils/ar.1	Mon Sep 13 04:14:07 1999
+++ binutils/ar.1	Sun Aug 20 23:17:28 2000
@@ -1,3 +1,3 @@
-.\" Copyright (c) 1991, 1992, 1993, 1995, 1998, 1999 Free Software Foundation
+.\" Copyright 1991, 1992, 1993, 1995, 1998, 1999 Free Software Foundation
 .\" See section COPYING for conditions for redistribution
 .TH ar 1 "1999" "Cygnus Solutions" "GNU Development Tools"
@@ -516,5 +516,5 @@
 
 .SH COPYING
-Copyright (c) 1991, 1992, 1993, 1995, 1998, 1999 Free Software Foundation, Inc.
+Copyright 1991, 1992, 1993, 1995, 1998, 1999 Free Software Foundation, Inc.
 .PP
 Permission is granted to make and distribute verbatim copies of
--- ../binutils-000817/binutils/ar.c	Sat Aug 12 04:26:28 2000
+++ binutils/ar.c	Sun Aug 20 23:17:28 2000
@@ -1,4 +1,4 @@
 /* ar.c - Archive modify and extract.
-   Copyright 1991, 92, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/binutils/arlex.c	Thu Aug 17 22:40:03 2000
+++ binutils/arlex.c	Sun Aug 20 23:17:30 2000
@@ -473,5 +473,5 @@
 /* arlex.l - Strange script language lexer */
 
-/*   Copyright (C) 1992, 95, 1997 Free Software Foundation, Inc.
+/*   Copyright 1992, 1995, 1997 Free Software Foundation, Inc.
 
 This file is part of GNU Binutils.
--- ../binutils-000817/binutils/arlex.l	Fri Apr 14 14:14:24 2000
+++ binutils/arlex.l	Sun Aug 20 23:17:28 2000
@@ -2,5 +2,5 @@
 /* arlex.l - Strange script language lexer */
 
-/*   Copyright (C) 1992, 95, 1997 Free Software Foundation, Inc.
+/*   Copyright 1992, 1995, 1997 Free Software Foundation, Inc.
 
 This file is part of GNU Binutils.
--- ../binutils-000817/binutils/arparse.c	Thu Aug 17 22:40:03 2000
+++ binutils/arparse.c	Sun Aug 20 23:17:30 2000
@@ -29,5 +29,6 @@
 /* arparse.y - Stange script language parser */
 
-/*   Copyright (C) 1992, 93, 95, 97, 98, 1999 Free Software Foundation, Inc.
+/*   Copyright 1992, 1993, 1995, 1997, 1998, 1999
+/*   Free Software Foundation, Inc.
 
 This file is part of GNU Binutils.
@@ -226,5 +227,5 @@
 
 /* Skeleton output parser for bison,
-   Copyright (C) 1984, 1989, 1990 Free Software Foundation, Inc.
+   Copyright 1984, 1989, 1990 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/binutils/arparse.y	Mon Jul 12 06:02:15 1999
+++ binutils/arparse.y	Sun Aug 20 23:17:28 2000
@@ -2,5 +2,6 @@
 /* arparse.y - Stange script language parser */
 
-/*   Copyright (C) 1992, 93, 95, 97, 98, 1999 Free Software Foundation, Inc.
+/*   Copyright 1992, 1993, 1995, 1997, 1998, 1999
+/*   Free Software Foundation, Inc.
 
 This file is part of GNU Binutils.
--- ../binutils-000817/binutils/arsup.c	Fri May 26 23:11:55 2000
+++ binutils/arsup.c	Sun Aug 20 23:17:28 2000
@@ -1,4 +1,4 @@
 /* arsup.c - Archive support for MRI compatibility
-   Copyright (C) 1992, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/binutils/binutils.texi	Thu Jul 27 11:39:45 2000
+++ binutils/binutils.texi	Sun Aug 20 23:17:28 2000
@@ -27,5 +27,6 @@
 
 @ifinfo
-Copyright @copyright{} 1991, 92, 93, 94, 95, 96, 97, 98, 99, 2000 Free Software Foundation, Inc.
+Copyright @copyright{} 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
+2000 Free Software Foundation, Inc.
 
 Permission is granted to make and distribute verbatim copies of
@@ -55,5 +56,6 @@
 @c  "objdump", "nm", "size", "strings", "strip", "readelf" and "ranlib".
 @c
-@c Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98, 99, 2000 Free Software Foundation, Inc.
+@c Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
+@c Free Software Foundation, Inc.
 @c 
 @c This text may be freely distributed under the terms of the GNU
@@ -80,5 +82,6 @@
 
 @vskip 0pt plus 1filll
-Copyright @copyright{} 1991, 92, 93, 94, 95, 96, 97, 1998 Free Software Foundation, Inc.
+Copyright @copyright{} 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998
+Free Software Foundation, Inc.
 
 Permission is granted to make and distribute verbatim copies of
--- ../binutils-000817/binutils/bucomm.c	Tue Jun 27 09:15:58 2000
+++ binutils/bucomm.c	Sun Aug 20 23:17:28 2000
@@ -1,4 +1,4 @@
 /* bucomm.c -- Bin Utils COMmon code.
-   Copyright (C) 1991, 92, 93, 94, 95, 97, 98, 2000
+   Copyright 1991, 1992, 1993, 1994, 1995, 1997, 1998, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/binutils/bucomm.h	Sat May 13 23:05:35 2000
+++ binutils/bucomm.h	Sun Aug 20 23:17:28 2000
@@ -1,4 +1,4 @@
 /* bucomm.h -- binutils common include file.
-   Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/binutils/budbg.h	Mon May  3 17:29:09 1999
+++ binutils/budbg.h	Sun Aug 20 23:17:28 2000
@@ -1,4 +1,4 @@
 /* budbg.c -- Interfaces to the generic debugging information routines.
-   Copyright (C) 1995, 1996 Free Software Foundation, Inc.
+   Copyright 1995, 1996 Free Software Foundation, Inc.
    Written by Ian Lance Taylor <ian@cygnus.com>.
 
--- ../binutils-000817/binutils/coffdump.c	Fri Apr  7 14:34:50 2000
+++ binutils/coffdump.c	Sun Aug 20 23:17:28 2000
@@ -1,4 +1,4 @@
 /* Coff file dumper.
-   Copyright (C) 1994, 95, 98, 99, 2000 Free Software Foundation, Inc.
+   Copyright 1994, 1995, 1998, 1999, 2000 Free Software Foundation, Inc.
 
 This file is part of GNU Binutils.
--- ../binutils-000817/binutils/coffgrok.c	Tue May  2 12:29:17 2000
+++ binutils/coffgrok.c	Sun Aug 20 23:17:28 2000
@@ -1,4 +1,4 @@
 /* coffgrok.c
-   Copyright (C) 1994, 95, 97, 1998 Free Software Foundation, Inc.
+   Copyright 1994, 1995, 1997, 1998 Free Software Foundation, Inc.
 
 This file is part of GNU Binutils.
--- ../binutils-000817/binutils/cxxfilt.man	Mon May  3 17:29:09 1999
+++ binutils/cxxfilt.man	Sun Aug 20 23:17:28 2000
@@ -1,3 +1,3 @@
-.\" Copyright (c) 1991 Free Software Foundation
+.\" Copyright 1991 Free Software Foundation
 .\" See section COPYING for conditions for redistribution
 .TH @PROGRAM@ 1 "June 1993" "cygnus support" "GNU Development Tools"
@@ -97,5 +97,5 @@
 
 .SH COPYING
-Copyright (c) 1993 Free Software Foundation, Inc.
+Copyright 1993 Free Software Foundation, Inc.
 .PP
 Permission is granted to make and distribute verbatim copies of
--- ../binutils-000817/binutils/debug.c	Sat Jan 15 10:10:21 2000
+++ binutils/debug.c	Sun Aug 20 23:17:28 2000
@@ -1,4 +1,4 @@
 /* debug.c -- Handle generic debugging information.
-   Copyright (C) 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
+   Copyright 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
    Written by Ian Lance Taylor <ian@cygnus.com>.
 
--- ../binutils-000817/binutils/debug.h	Mon May  3 17:29:09 1999
+++ binutils/debug.h	Sun Aug 20 23:17:28 2000
@@ -1,4 +1,4 @@
 /* debug.h -- Describe generic debugging information.
-   Copyright (C) 1995, 1996 Free Software Foundation, Inc.
+   Copyright 1995, 1996 Free Software Foundation, Inc.
    Written by Ian Lance Taylor <ian@cygnus.com>.
 
--- ../binutils-000817/binutils/deflex.c	Thu Aug 17 22:40:03 2000
+++ binutils/deflex.c	Sun Aug 20 23:17:30 2000
@@ -478,5 +478,5 @@
 #line 2 "deflex.l"
 
-/*   Copyright (C) 1995, 1997, 1998, 1999 Free Software Foundation, Inc.
+/*   Copyright 1995, 1997, 1998, 1999 Free Software Foundation, Inc.
 
 This file is part of GNU Binutils.
--- ../binutils-000817/binutils/deflex.l	Sat Jun 19 05:44:21 1999
+++ binutils/deflex.l	Sun Aug 20 23:17:28 2000
@@ -1,5 +1,5 @@
 %{/* deflex.l - Lexer for .def files */
 
-/*   Copyright (C) 1995, 1997, 1998, 1999 Free Software Foundation, Inc.
+/*   Copyright 1995, 1997, 1998, 1999 Free Software Foundation, Inc.
 
 This file is part of GNU Binutils.
--- ../binutils-000817/binutils/defparse.c	Thu Aug 17 22:40:03 2000
+++ binutils/defparse.c	Sun Aug 20 23:17:30 2000
@@ -37,5 +37,5 @@
  /* defparse.y - parser for .def files */
 
-/*   Copyright (C) 1995, 1997, 1998, 1999 Free Software Foundation, Inc.
+/*   Copyright 1995, 1997, 1998, 1999 Free Software Foundation, Inc.
 
 This file is part of GNU Binutils.
@@ -265,5 +265,5 @@
 
 /* Skeleton output parser for bison,
-   Copyright (C) 1984, 1989, 1990 Free Software Foundation, Inc.
+   Copyright 1984, 1989, 1990 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/binutils/defparse.y	Sun Jun 13 20:16:42 1999
+++ binutils/defparse.y	Sun Aug 20 23:17:28 2000
@@ -1,5 +1,5 @@
 %{ /* defparse.y - parser for .def files */
 
-/*   Copyright (C) 1995, 1997, 1998, 1999 Free Software Foundation, Inc.
+/*   Copyright 1995, 1997, 1998, 1999 Free Software Foundation, Inc.
 
 This file is part of GNU Binutils.
--- ../binutils-000817/binutils/dlltool.c	Fri Apr  7 14:34:50 2000
+++ binutils/dlltool.c	Sun Aug 20 23:17:28 2000
@@ -1,4 +1,4 @@
 /* dlltool.c -- tool to generate stuff for PE style DLLs
-   Copyright (C) 1995, 96, 97, 98, 99, 2000 Free Software Foundation, Inc.
+   Copyright 1995, 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
 
    This file is part of GNU Binutils.
--- ../binutils-000817/binutils/dlltool.h	Mon May  3 17:29:09 1999
+++ binutils/dlltool.h	Sun Aug 20 23:17:28 2000
@@ -1,4 +1,4 @@
 /* dlltool.h -- header file for dlltool
-   Copyright (C) 1997, 1998 Free Software Foundation, Inc.
+   Copyright 1997, 1998 Free Software Foundation, Inc.
 
    This file is part of GNU Binutils.
--- ../binutils-000817/binutils/dllwrap.c	Sun Jul  2 11:56:58 2000
+++ binutils/dllwrap.c	Sun Aug 20 23:17:28 2000
@@ -1,4 +1,4 @@
 /* dllwrap.c -- wrapper for DLLTOOL and GCC to generate PE style DLLs
-   Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1998, 1999, 2000 Free Software Foundation, Inc.
    Contributed by Mumit Khan (khan@xraylith.wisc.edu).
 
--- ../binutils-000817/binutils/filemode.c	Mon Jul 12 06:02:18 1999
+++ binutils/filemode.c	Sun Aug 20 23:17:28 2000
@@ -1,4 +1,5 @@
 /* filemode.c -- make a string describing file modes
-   Copyright (C) 1985, 90, 91, 94, 95, 97, 1999 Free Software Foundation, Inc.
+   Copyright 1985, 1990, 1991, 1994, 1995, 1997, 1999
+   Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/binutils/ieee.c	Tue Jun 20 22:33:20 2000
+++ binutils/ieee.c	Sun Aug 20 23:17:28 2000
@@ -1,4 +1,4 @@
 /* ieee.c -- Read and write IEEE-695 debugging information.
-   Copyright (C) 1996, 1998, 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1996, 1998, 1999, 2000 Free Software Foundation, Inc.
    Written by Ian Lance Taylor <ian@cygnus.com>.
 
--- ../binutils-000817/binutils/nlmconv.1	Mon May  3 17:29:10 1999
+++ binutils/nlmconv.1	Sun Aug 20 23:17:29 2000
@@ -1,3 +1,3 @@
-.\" Copyright (c) 1991, 1996  Free Software Foundation
+.\" Copyright 1991, 1996 Free Software Foundation
 .\" See section COPYING for conditions for redistribution
 .TH nlmconv 1 "March 1996" "cygnus support" "GNU Development Tools"
@@ -93,5 +93,5 @@
 
 .SH COPYING
-Copyright (c) 1993 Free Software Foundation, Inc.
+Copyright 1993 Free Software Foundation, Inc.
 .PP
 Permission is granted to make and distribute verbatim copies of
--- ../binutils-000817/binutils/nlmconv.c	Sat May 13 16:38:34 2000
+++ binutils/nlmconv.c	Sun Aug 20 23:17:29 2000
@@ -1,4 +1,4 @@
 /* nlmconv.c -- NLM conversion program
-   Copyright (C) 1993, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/binutils/nlmconv.h	Mon May  3 17:29:10 1999
+++ binutils/nlmconv.h	Sun Aug 20 23:17:29 2000
@@ -1,4 +1,4 @@
 /* nlmconv.h -- header file for NLM conversion program
-   Copyright (C) 1993 Free Software Foundation, Inc.
+   Copyright 1993 Free Software Foundation, Inc.
 
 This file is part of GNU Binutils.
--- ../binutils-000817/binutils/nlmheader.c	Thu Aug 17 22:40:03 2000
+++ binutils/nlmheader.c	Sun Aug 20 23:17:30 2000
@@ -44,5 +44,5 @@
 #line 1 "nlmheader.y"
 /* nlmheader.y - parse NLM header specification keywords.
-     Copyright (C) 1993, 94, 95, 97, 1998 Free Software Foundation, Inc.
+     Copyright 1993, 1994, 1995, 1997, 1998 Free Software Foundation, Inc.
 
 This file is part of GNU Binutils.
@@ -341,5 +341,5 @@
 
 /* Skeleton output parser for bison,
-   Copyright (C) 1984, 1989, 1990 Free Software Foundation, Inc.
+   Copyright 1984, 1989, 1990 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/binutils/nlmheader.y	Mon May  3 17:29:10 1999
+++ binutils/nlmheader.y	Sun Aug 20 23:17:29 2000
@@ -1,4 +1,4 @@
 %{/* nlmheader.y - parse NLM header specification keywords.
-     Copyright (C) 1993, 94, 95, 97, 1998 Free Software Foundation, Inc.
+     Copyright 1993, 1994, 1995, 1997, 1998 Free Software Foundation, Inc.
 
 This file is part of GNU Binutils.
--- ../binutils-000817/binutils/nm.1	Mon May  3 17:29:10 1999
+++ binutils/nm.1	Sun Aug 20 23:17:29 2000
@@ -1,3 +1,3 @@
-.\" Copyright (c) 1991 Free Software Foundation
+.\" Copyright 1991 Free Software Foundation
 .\" See section COPYING for conditions for redistribution
 .TH nm 1 "5 November 1991" "cygnus support" "GNU Development Tools"
@@ -213,5 +213,5 @@
 
 .SH COPYING
-Copyright (c) 1991 Free Software Foundation, Inc.
+Copyright 1991 Free Software Foundation, Inc.
 .PP
 Permission is granted to make and distribute verbatim copies of
--- ../binutils-000817/binutils/nm.c	Thu Jul 27 11:39:45 2000
+++ binutils/nm.c	Sun Aug 20 23:17:29 2000
@@ -1,4 +1,4 @@
 /* nm.c -- Describe symbol table of a rel file.
-   Copyright 1991, 92, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/binutils/objcopy.1	Fri Apr  7 14:34:50 2000
+++ binutils/objcopy.1	Sun Aug 20 23:17:29 2000
@@ -1,3 +1,4 @@
-.\" Copyright (c) 1991, 93, 94, 95, 96, 97, 98, 99, 2000 Free Software Foundation
+.\" Copyright 1991, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
+.\" Free Software Foundation
 .\" See section COPYING for conditions for redistribution
 .TH objcopy 1 "05 April 2000" "Cygnus Solutions" "GNU Development Tools"
@@ -315,5 +316,6 @@
 
 .SH COPYING
-Copyright (c) 1993, 94, 95, 96, 97, 98, 1999 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999
+Free Software Foundation, Inc.
 .PP
 Permission is granted to make and distribute verbatim copies of
--- ../binutils-000817/binutils/objcopy.c	Tue Aug 15 05:47:01 2000
+++ binutils/objcopy.c	Sun Aug 20 23:17:29 2000
@@ -1,4 +1,4 @@
 /* objcopy.c -- copy object file from input to output, optionally massaging it.
-   Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/binutils/objdump.1	Mon May  3 17:29:10 1999
+++ binutils/objdump.1	Sun Aug 20 23:17:29 2000
@@ -1,3 +1,4 @@
-.\" Copyright (c) 1991, 92, 93, 94, 95, 96, 97, 1998 Free Software Foundation
+.\" Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998
+.\" Free Software Foundation
 .\" See section COPYING for conditions for redistribution
 .TH objdump 1 "5 November 1991" "cygnus support" "GNU Development Tools"
@@ -395,5 +396,5 @@
 
 .SH COPYING
-Copyright (c) 1991, 92, 93, 94, 95, 1996 Free Software Foundation, Inc.
+Copyright 1991, 1992, 1993, 1994, 1995, 1996 Free Software Foundation, Inc.
 .PP
 Permission is granted to make and distribute verbatim copies of
--- ../binutils-000817/binutils/objdump.c	Fri Jul 21 04:02:55 2000
+++ binutils/objdump.c	Sun Aug 20 23:17:29 2000
@@ -1,4 +1,4 @@
 /* objdump.c -- dump information about an object file.
-   Copyright 1990, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/binutils/po/binutils.pot	Fri Jul 21 03:28:56 2000
+++ binutils/po/binutils.pot	Sun Aug 20 23:17:29 2000
@@ -3967,5 +3967,5 @@
 
 #: version.c:39
-msgid "Copyright 1997, 98, 99, 2000 Free Software Foundation, Inc.\n"
+msgid "Copyright 1997, 1998, 1999, 2000 Free Software Foundation, Inc.\n"
 msgstr ""
 
--- ../binutils-000817/binutils/prdbg.c	Mon Jul 12 06:02:24 1999
+++ binutils/prdbg.c	Sun Aug 20 23:17:29 2000
@@ -1,4 +1,4 @@
 /* prdbg.c -- Print out generic debugging information.
-   Copyright (C) 1995, 1996, 1999 Free Software Foundation, Inc.
+   Copyright 1995, 1996, 1999 Free Software Foundation, Inc.
    Written by Ian Lance Taylor <ian@cygnus.com>.
 
--- ../binutils-000817/binutils/ranlib.1	Mon May  3 17:29:10 1999
+++ binutils/ranlib.1	Sun Aug 20 23:17:29 2000
@@ -1,3 +1,3 @@
-.\" Copyright (c) 1991 Free Software Foundation
+.\" Copyright 1991 Free Software Foundation
 .\" See section COPYING for conditions for redistribution
 .TH ranlib 1 "5 November 1991" "cygnus support" "GNU Development Tools"
@@ -66,5 +66,5 @@
 
 .SH COPYING
-Copyright (c) 1991 Free Software Foundation, Inc.
+Copyright 1991 Free Software Foundation, Inc.
 .PP
 Permission is granted to make and distribute verbatim copies of
--- ../binutils-000817/binutils/rcparse.c	Thu Aug 17 22:40:04 2000
+++ binutils/rcparse.c	Sun Aug 20 23:17:30 2000
@@ -768,5 +768,5 @@
 
 /* Skeleton output parser for bison,
-   Copyright (C) 1984, 1989, 1990 Free Software Foundation, Inc.
+   Copyright 1984, 1989, 1990 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/binutils/rdcoff.c	Sun Jul 23 18:19:25 2000
+++ binutils/rdcoff.c	Sun Aug 20 23:17:29 2000
@@ -1,4 +1,4 @@
 /* stabs.c -- Parse COFF debugging information
-   Copyright (C) 1996, 98, 99, 2000 Free Software Foundation, Inc.
+   Copyright 1996, 1998, 1999, 2000 Free Software Foundation, Inc.
    Written by Ian Lance Taylor <ian@cygnus.com>.
 
--- ../binutils-000817/binutils/rddbg.c	Fri Apr  7 14:34:50 2000
+++ binutils/rddbg.c	Sun Aug 20 23:17:29 2000
@@ -1,4 +1,4 @@
 /* rddbg.c -- Read debugging information into a generic form.
-   Copyright (C) 1995, 96, 97, 98, 2000 Free Software Foundation, Inc.
+   Copyright 1995, 1996, 1997, 1998, 2000 Free Software Foundation, Inc.
    Written by Ian Lance Taylor <ian@cygnus.com>.
 
--- ../binutils-000817/binutils/readelf.c	Tue Aug  8 10:47:04 2000
+++ binutils/readelf.c	Sun Aug 20 23:17:29 2000
@@ -1,4 +1,4 @@
 /* readelf.c -- display contents of an ELF format file
-   Copyright (C) 1998, 99, 2000 Free Software Foundation, Inc.
+   Copyright 1998, 1999, 2000 Free Software Foundation, Inc.
 
    Originally developed by Eric Youngdale <eric@andante.jic.com>
--- ../binutils-000817/binutils/rename.c	Sun Jun 13 02:04:07 1999
+++ binutils/rename.c	Sun Aug 20 23:17:29 2000
@@ -1,4 +1,4 @@
 /* rename.c -- rename a file, preserving symlinks.
-   Copyright (C) 1999 Free Software Foundation, Inc.
+   Copyright 1999 Free Software Foundation, Inc.
 
    This file is part of GNU Binutils.
--- ../binutils-000817/binutils/size.1	Mon May  3 17:29:10 1999
+++ binutils/size.1	Sun Aug 20 23:17:29 2000
@@ -1,3 +1,3 @@
-.\" Copyright (c) 1991 Free Software Foundation
+.\" Copyright 1991 Free Software Foundation
 .\" See section COPYING for conditions for redistribution
 .TH size 1 "5 November 1991" "cygnus support" "GNU Development Tools"
@@ -144,5 +144,5 @@
 
 .SH COPYING
-Copyright (c) 1991 Free Software Foundation, Inc.
+Copyright 1991 Free Software Foundation, Inc.
 .PP
 Permission is granted to make and distribute verbatim copies of
--- ../binutils-000817/binutils/size.c	Sun May 14 20:40:48 2000
+++ binutils/size.c	Sun Aug 20 23:17:29 2000
@@ -1,4 +1,4 @@
 /* size.c -- report size of various sections of an executable file.
-   Copyright 1991, 92, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/binutils/srconv.c	Tue May  2 12:29:17 2000
+++ binutils/srconv.c	Sun Aug 20 23:17:29 2000
@@ -1,4 +1,4 @@
 /* srconv.c -- Sysroff conversion program
-   Copyright (C) 1994, 95, 96, 98, 99, 2000 Free Software Foundation, Inc.
+   Copyright 1994, 1995, 1996, 1998, 1999, 2000 Free Software Foundation, Inc.
 
    This file is part of GNU Binutils.
--- ../binutils-000817/binutils/stabs.c	Tue Jul 11 00:51:04 2000
+++ binutils/stabs.c	Sun Aug 20 23:17:29 2000
@@ -1,4 +1,4 @@
 /* stabs.c -- Parse stabs debugging information
-   Copyright (C) 1995, 96, 97, 98, 99, 2000 Free Software Foundation, Inc.
+   Copyright 1995, 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
    Written by Ian Lance Taylor <ian@cygnus.com>.
 
--- ../binutils-000817/binutils/strings.1	Fri Apr  7 14:34:50 2000
+++ binutils/strings.1	Sun Aug 20 23:17:29 2000
@@ -1,3 +1,3 @@
-.\" Copyright (c) 1993, 94, 95, 2000 Free Software Foundation
+.\" Copyright 1993, 1994, 1995, 2000 Free Software Foundation
 .\" See section COPYING for conditions for redistribution
 .TH strings 1 "09 March 2000" "cygnus support" "GNU Development Tools"
@@ -134,5 +134,5 @@
 
 .SH COPYING
-Copyright (c) 1993 Free Software Foundation, Inc.
+Copyright 1993 Free Software Foundation, Inc.
 .PP
 Permission is granted to make and distribute verbatim copies of
--- ../binutils-000817/binutils/strings.c	Sat Jun  3 04:55:04 2000
+++ binutils/strings.c	Sun Aug 20 23:17:29 2000
@@ -1,4 +1,4 @@
 /* strings -- print the strings of printable characters in files
-   Copyright (C) 1993, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/binutils/strip.1	Mon May  3 17:29:10 1999
+++ binutils/strip.1	Sun Aug 20 23:17:29 2000
@@ -1,3 +1,4 @@
-.\" Copyright (c) 1991, 92, 93, 94, 95, 96, 97, 1998 Free Software Foundation
+.\" Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998
+.\" Free Software Foundation
 .\" See section COPYING for conditions for redistribution
 .TH strip 1 "5 November 1991" "cygnus support" "GNU Development Tools"
@@ -168,5 +169,5 @@
 
 .SH COPYING
-Copyright (c) 1991 Free Software Foundation, Inc.
+Copyright 1991 Free Software Foundation, Inc.
 .PP
 Permission is granted to make and distribute verbatim copies of
--- ../binutils-000817/binutils/sysdump.c	Tue May  2 12:29:17 2000
+++ binutils/sysdump.c	Sun Aug 20 23:17:29 2000
@@ -1,4 +1,4 @@
 /* Sysroff object format dumper.
-   Copyright (C) 1994, 95, 98, 99, 2000 Free Software Foundation, Inc.
+   Copyright 1994, 1995, 1998, 1999, 2000 Free Software Foundation, Inc.
 
    This file is part of GNU Binutils.
--- ../binutils-000817/binutils/sysinfo.c	Thu Aug 17 22:40:03 2000
+++ binutils/sysinfo.c	Sun Aug 20 23:17:30 2000
@@ -186,5 +186,5 @@
 
 /* Skeleton output parser for bison,
-   Copyright (C) 1984, 1989, 1990 Free Software Foundation, Inc.
+   Copyright 1984, 1989, 1990 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/binutils/version.c	Fri Apr  7 14:34:50 2000
+++ binutils/version.c	Mon Aug 21 09:02:59 2000
@@ -1,4 +1,4 @@
 /* version.c -- binutils version information
-   Copyright 1991, 96, 97, 98, 99, 2000 Free Software Foundation, Inc.
+   Copyright 1991, 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
 
 This file is part of GNU Binutils.
@@ -37,5 +37,5 @@
   /* xgettext:c-format */
   printf ("GNU %s %s\n", name, program_version);
-  printf (_("Copyright 1997, 98, 99, 2000 Free Software Foundation, Inc.\n"));
+  printf (_("Copyright 1997, 1998, 1999, 2000 Free Software Foundation, Inc.\n"));
   printf (_("\
 This program is free software; you may redistribute it under the terms of\n\
--- ../binutils-000817/binutils/windres.c	Fri Apr  7 14:34:50 2000
+++ binutils/windres.c	Sun Aug 20 23:17:29 2000
@@ -1,4 +1,4 @@
 /* windres.c -- a program to manipulate Windows resources
-   Copyright 1997, 98, 99, 2000 Free Software Foundation, Inc.
+   Copyright 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
    Written by Ian Lance Taylor, Cygnus Support.
 
--- ../binutils-000817/binutils/wrstabs.c	Fri Apr  7 14:34:50 2000
+++ binutils/wrstabs.c	Sun Aug 20 23:17:29 2000
@@ -1,4 +1,4 @@
 /* wrstabs.c -- Output stabs debugging information
-   Copyright (C) 1996, 97, 98, 99, 2000 Free Software Foundation, Inc.
+   Copyright 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
    Written by Ian Lance Taylor <ian@cygnus.com>.
 

# binutils/testsuite
2000-08-25  Rodney Brown  <RodneyBrown@mynd.com>

	* binutils-all/ar.exp: Standardize FSF Copyright statements.
	* binutils-all/hppa/objdump.exp: Likewise.
	* binutils-all/nm.exp binutils-all/objcopy.exp: Likewise.
	* binutils-all/objdump.exp binutils-all/readelf.exp: Likewise.
	* binutils-all/size.exp: Likewise.
	* config/default.exp: Likewise.
	* lib/utils-lib.exp: Likewise.

--- ../binutils-000817/binutils/testsuite/binutils-all/ar.exp	Mon May  3 17:29:11 1999
+++ binutils/testsuite/binutils-all/ar.exp	Sun Aug 20 23:17:29 2000
@@ -1,3 +1,3 @@
-#   Copyright (C) 1995, 1997 Free Software Foundation, Inc.
+#   Copyright 1995, 1997 Free Software Foundation, Inc.
 
 # This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/binutils/testsuite/binutils-all/hppa/objdump.exp	Tue May  2 10:00:27 2000
+++ binutils/testsuite/binutils-all/hppa/objdump.exp	Sun Aug 20 23:17:30 2000
@@ -1,3 +1,3 @@
-#   Copyright (C) 1993, 1994, 1996, 1997 Free Software Foundation, Inc.
+#   Copyright 1993, 1994, 1996, 1997 Free Software Foundation, Inc.
 
 # This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/binutils/testsuite/binutils-all/nm.exp	Mon May  3 17:29:11 1999
+++ binutils/testsuite/binutils-all/nm.exp	Sun Aug 20 23:17:29 2000
@@ -1,3 +1,3 @@
-#   Copyright (C) 1993, 1994, 1996, 1997 Free Software Foundation, Inc.
+#   Copyright 1993, 1994, 1996, 1997 Free Software Foundation, Inc.
 
 # This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/binutils/testsuite/binutils-all/objcopy.exp	Mon Jun 19 11:04:20 2000
+++ binutils/testsuite/binutils-all/objcopy.exp	Sun Aug 20 23:17:29 2000
@@ -1,3 +1,3 @@
-#   Copyright (C) 1994, 95, 96, 97, 1998 Free Software Foundation, Inc.
+#   Copyright 1994, 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
 
 # This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/binutils/testsuite/binutils-all/objdump.exp	Sat Jul  1 19:42:27 2000
+++ binutils/testsuite/binutils-all/objdump.exp	Sun Aug 20 23:17:30 2000
@@ -1,3 +1,3 @@
-#   Copyright (C) 1993, 1994, 1995, 1996, 2000 Free Software Foundation, Inc.
+#   Copyright 1993, 1994, 1995, 1996, 2000 Free Software Foundation, Inc.
 
 # This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/binutils/testsuite/binutils-all/readelf.exp	Wed Jun 14 11:21:35 2000
+++ binutils/testsuite/binutils-all/readelf.exp	Sun Aug 20 23:17:30 2000
@@ -1,3 +1,3 @@
-#   Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+#   Copyright 1999, 2000 Free Software Foundation, Inc.
 
 # This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/binutils/testsuite/binutils-all/size.exp	Mon May  3 17:29:11 1999
+++ binutils/testsuite/binutils-all/size.exp	Sun Aug 20 23:17:30 2000
@@ -1,3 +1,3 @@
-#   Copyright (C) 1993, 1994, 1996, 1997 Free Software Foundation, Inc.
+#   Copyright 1993, 1994, 1996, 1997 Free Software Foundation, Inc.
 
 # This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/binutils/testsuite/config/default.exp	Mon May  3 17:29:11 1999
+++ binutils/testsuite/config/default.exp	Sun Aug 20 23:17:30 2000
@@ -1,3 +1,3 @@
-#   Copyright (C) 1993, 1994, 1996, 1997 Free Software Foundation, Inc.
+#   Copyright 1993, 1994, 1996, 1997 Free Software Foundation, Inc.
 
 # This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/binutils/testsuite/lib/utils-lib.exp	Tue Jul 11 00:59:48 2000
+++ binutils/testsuite/lib/utils-lib.exp	Sun Aug 20 23:17:30 2000
@@ -1,3 +1,3 @@
-#   Copyright (C) 1993, 1994, 1997 Free Software Foundation, Inc.
+#   Copyright 1993, 1994, 1997 Free Software Foundation, Inc.
 
 # This program is free software; you can redistribute it and/or modify

# gas
2000-08-25  Rodney Brown  <RodneyBrown@mynd.com>

	* app.c as.c as.h asintl.h: Standardize FSF Copyright statements.
	* atof-generic.c bignum-copy.c: Likewise.
	* bignum.h bit_fix.h cgen.c cgen.h cond.c: Likewise.
	* config/aout_gnu.h config/atof-ieee.c: Likewise.
	* config/atof-tahoe.c config/atof-vax.c: Likewise.
	* config/itbl-mips.h config/m68k-parse.h: Likewise.
	* config/m68k-parse.y config/m88k-opcode.h: Likewise.
	* config/obj-aout.c config/obj-aout.h config/obj-bout.c: Likewise.
	* config/obj-bout.h config/obj-coff.c config/obj-coff.h: Likewise.
	* config/obj-ecoff.c config/obj-ecoff.h config/obj-elf.c: Likewise.
	* config/obj-elf.h config/obj-evax.c config/obj-evax.h: Likewise.
	* config/obj-generic.c config/obj-generic.h: Likewise.
	* config/obj-hp300.c config/obj-hp300.h config/obj-ieee.c: Likewise.
	* config/obj-ieee.h config/obj-multi.h config/obj-som.c: Likewise.
	* config/obj-som.h config/obj-vms.c config/obj-vms.h: Likewise.
	* config/tc-a29k.c config/tc-a29k.h config/tc-alpha.c: Likewise.
	* config/tc-alpha.h config/tc-arc.c config/tc-arc.h: Likewise.
	* config/tc-arm.c config/tc-arm.h config/tc-avr.c: Likewise.
	* config/tc-avr.h config/tc-cris.c config/tc-cris.h: Likewise.
	* config/tc-d10v.c config/tc-d10v.h config/tc-d30v.c: Likewise.
	* config/tc-d30v.h config/tc-fr30.c config/tc-fr30.h: Likewise.
	* config/tc-generic.h config/tc-h8300.c config/tc-h8300.h: Likewise.
	* config/tc-h8500.c config/tc-h8500.h config/tc-hppa.c: Likewise.
	* config/tc-hppa.h config/tc-i370.c config/tc-i370.h: Likewise.
	* config/tc-i386.c config/tc-i386.h config/tc-i860.c: Likewise.
	* config/tc-i860.h config/tc-i960.c config/tc-i960.h: Likewise.
	* config/tc-ia64.c config/tc-ia64.h config/tc-m32r.c: Likewise.
	* config/tc-m32r.h config/tc-m68851.h config/tc-m68hc11.c: Likewise.
	* config/tc-m68hc11.h config/tc-m68k.c config/tc-m68k.h: Likewise.
	* config/tc-m88k.c config/tc-m88k.h config/tc-mcore.c: Likewise.
	* config/tc-mcore.h config/tc-mips.c config/tc-mips.h: Likewise.
	* config/tc-mn10200.c config/tc-mn10200.h: Likewise.
	* config/tc-mn10300.c config/tc-mn10300.h: Likewise.
	* config/tc-ns32k.c config/tc-ns32k.h config/tc-pj.c: Likewise.
	* config/tc-pj.h config/tc-ppc.c config/tc-ppc.h: Likewise.
	* config/tc-sh.c config/tc-sh.h config/tc-sparc.c: Likewise.
	* config/tc-sparc.h config/tc-tahoe.h config/tc-tic30.c: Likewise.
	* config/tc-tic30.h config/tc-tic54x.c config/tc-tic54x.h: Likewise.
	* config/tc-tic80.c config/tc-tic80.h config/tc-v850.c: Likewise.
	* config/tc-v850.h config/tc-vax.c config/tc-vax.h: Likewise.
	* config/tc-w65.c config/tc-w65.h config/tc-z8k.c: Likewise.
	* config/tc-z8k.h config/te-386bsd.h config/te-freebsd.h: Likewise.
	* config/te-hp300.h config/te-ic960.h config/te-nbsd.h: Likewise.
	* config/te-ppcnw.h config/te-sparcaout.h: Likewise.
	* config/te-sun3.h config/te-tmips.h config/vax-inst.h: Likewise.
	* debug.c depend.c: Likewise.
	* doc/as.1 doc/as.texinfo doc/c-a29k.texi doc/c-arm.texi: Likewise.
	* doc/c-d10v.texi doc/c-d30v.texi doc/c-h8300.texi: Likewise.
	* doc/c-h8500.texi doc/c-hppa.texi doc/c-i370.texi: Likewise.
	* doc/c-i386.texi doc/c-i860.texi doc/c-i960.texi: Likewise.
	* doc/c-m32r.texi doc/c-m68hc11.texi doc/c-m68k.texi: Likewise.
	* doc/c-mips.texi doc/c-ns32k.texi doc/c-pj.texi: Likewise.
	* doc/c-sh.texi doc/c-sparc.texi doc/c-tic54x.texi: Likewise.
	* doc/c-v850.texi doc/c-vax.texi doc/c-z8k.texi: Likewise.
	* doc/gasp.texi: Likewise.
	* dwarf2dbg.c dwarf2dbg.h ecoff.c ecoff.h ehopt.c expr.c: Likewise.
	* expr.h flonum-copy.c flonum-konst.c flonum-mult.c: Likewise.
	* flonum.h frags.c frags.h gasp.c hash.c hash.h: Likewise.
	* input-file.c input-file.h input-scrub.c itbl-lex.c: Likewise.
	* itbl-lex.l itbl-ops.c itbl-ops.h itbl-parse.c: Likewise.
	* itbl-parse.y listing.c listing.h literal.c m68k-parse.c: Likewise.
	* macro.c macro.h messages.c obj.h output-file.c: Likewise.
	* output-file.h read.c read.h sb.c sb.h stabs.c: Likewise.
	* struc-symbol.h subsegs.c subsegs.h symbols.c symbols.h: Likewise.
	* tc.h write.c write.h: Likewise.

--- ../binutils-000817/gas/app.c	Fri Jul 28 15:05:19 2000
+++ gas/app.c	Sun Aug 20 23:19:47 2000
@@ -1,5 +1,5 @@
 /* This is the Assembler Pre-Processor
-   Copyright (C) 1987, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000
-   Free Software Foundation, Inc.
+   Copyright 1987, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
+   2000 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/as.c	Fri Jul 21 03:45:27 2000
+++ gas/as.c	Sun Aug 20 23:19:50 2000
@@ -1,5 +1,5 @@
 /* as.c - GAS main program.
-   Copyright (C) 1987, 1990, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000
-   Free Software Foundation, Inc.
+   Copyright 1987, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
+   2000 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/as.h	Fri Jul 28 15:05:19 2000
+++ gas/as.h	Sun Aug 20 23:19:54 2000
@@ -1,5 +1,5 @@
 /* as.h - global header file
-   Copyright (C) 1987, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000
-   Free Software Foundation, Inc.
+   Copyright 1987, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
+   2000 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/asintl.h	Sat May 13 23:05:35 2000
+++ gas/asintl.h	Sun Aug 20 23:17:41 2000
@@ -1,4 +1,4 @@
 /* asintl.h - gas-specific header for gettext code.
-   Copyright (C) 1998, 1999 Free Software Foundation, Inc.
+   Copyright 1998, 1999 Free Software Foundation, Inc.
 
    Written by Tom Tromey <tromey@cygnus.com>
--- ../binutils-000817/gas/atof-generic.c	Sat May 29 01:28:51 1999
+++ gas/atof-generic.c	Sun Aug 20 23:17:41 2000
@@ -1,4 +1,4 @@
 /* atof_generic.c - turn a string of digits into a Flonum
-   Copyright (C) 1987, 90, 91, 92, 93, 94, 95, 96, 1998
+   Copyright 1987, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1998
    Free Software Foundation, Inc.
 
--- ../binutils-000817/gas/bignum-copy.c	Mon May  3 17:28:40 1999
+++ gas/bignum-copy.c	Sun Aug 20 23:17:41 2000
@@ -1,4 +1,4 @@
 /* bignum_copy.c - copy a bignum
-   Copyright (C) 1987, 1990, 1991, 1992 Free Software Foundation, Inc.
+   Copyright 1987, 1990, 1991, 1992 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/bignum.h	Mon May  3 17:28:40 1999
+++ gas/bignum.h	Sun Aug 20 23:17:41 2000
@@ -1,4 +1,4 @@
 /* bignum.h-arbitrary precision integers
-   Copyright (C) 1987, 1992 Free Software Foundation, Inc.
+   Copyright 1987, 1992 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/bit_fix.h	Mon May  3 17:28:40 1999
+++ gas/bit_fix.h	Sun Aug 20 23:17:41 2000
@@ -1,5 +1,5 @@
 /* write.h
 
-   Copyright (C) 1987, 1992 Free Software Foundation, Inc.
+   Copyright 1987, 1992 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/cgen.c	Tue Aug  1 08:08:14 2000
+++ gas/cgen.c	Sun Aug 20 23:17:41 2000
@@ -1,4 +1,4 @@
 /* GAS interface for targets using CGEN: Cpu tools GENerator.
-   Copyright (C) 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
 
 This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/cgen.h	Tue Aug  1 08:08:14 2000
+++ gas/cgen.h	Sun Aug 20 23:17:41 2000
@@ -1,4 +1,4 @@
 /* GAS cgen support.
-   Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1998, 1999, 2000 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/cond.c	Thu Feb 24 12:56:31 2000
+++ gas/cond.c	Sun Aug 20 23:17:41 2000
@@ -1,4 +1,4 @@
 /* cond.c - conditional assembly pseudo-ops, and .include
-   Copyright (C) 1990, 91, 92, 93, 95, 96, 97, 98, 99, 2000
+   Copyright 1990, 1991, 1992, 1993, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/gas/config/aout_gnu.h	Mon May  3 17:28:41 1999
+++ gas/config/aout_gnu.h	Sun Aug 20 23:17:42 2000
@@ -1,5 +1,5 @@
 /* This file is aout_gnu.h
 
-   Copyright (C) 1987-1992 Free Software Foundation, Inc.
+   Copyright 1987, 1988, 1989, 1990, 1991, 1992 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/atof-ieee.c	Tue Aug  8 05:54:34 2000
+++ gas/config/atof-ieee.c	Sun Aug 20 23:17:42 2000
@@ -1,4 +1,4 @@
 /* atof_ieee.c - turn a Flonum into an IEEE floating point number
-   Copyright (C) 1987, 92, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1987, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/gas/config/atof-tahoe.c	Tue Aug  8 05:54:34 2000
+++ gas/config/atof-tahoe.c	Sun Aug 20 23:17:42 2000
@@ -1,4 +1,4 @@
 /* atof_tahoe.c - turn a string into a Tahoe floating point number
-   Copyright (C) 1987, 1998 Free Software Foundation, Inc.  */
+   Copyright 1987, 1998 Free Software Foundation, Inc.  */
 
 /* This is really a simplified version of atof_vax.c. I glommed it wholesale
--- ../binutils-000817/gas/config/atof-vax.c	Sun Sep 12 13:34:29 1999
+++ gas/config/atof-vax.c	Sun Aug 20 23:17:42 2000
@@ -1,4 +1,4 @@
 /* atof_vax.c - turn a Flonum into a VAX floating point number
-   Copyright (C) 1987, 1992, 93, 95, 97, 98, 1999
+   Copyright 1987, 1992, 1993, 1995, 1997, 1998, 1999
    Free Software Foundation, Inc.
 
--- ../binutils-000817/gas/config/itbl-mips.h	Mon May  3 17:28:41 1999
+++ gas/config/itbl-mips.h	Sun Aug 20 23:17:42 2000
@@ -2,5 +2,5 @@
 /* itbl-mips.h
 
-   Copyright (C) 1997  Free Software Foundation, Inc.
+   Copyright 1997 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/m68k-parse.h	Fri May 28 08:36:50 1999
+++ gas/config/m68k-parse.h	Sun Aug 20 23:17:42 2000
@@ -1,4 +1,4 @@
 /* m68k-parse.h -- header file for m68k assembler
-   Copyright (C) 1987, 91, 92, 93, 94, 95, 96, 1999
+   Copyright 1987, 1991, 1992, 1993, 1994, 1995, 1996, 1999
    Free Software Foundation, Inc.
 
--- ../binutils-000817/gas/config/m68k-parse.y	Mon May  3 17:28:41 1999
+++ gas/config/m68k-parse.y	Sun Aug 20 23:17:42 2000
@@ -1,4 +1,4 @@
 /* m68k.y -- bison grammar for m68k operand parsing
-   Copyright (C) 1995, 96, 1997, 1998 Free Software Foundation, Inc.
+   Copyright 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
    Written by Ken Raeburn and Ian Lance Taylor, Cygnus Support
 
--- ../binutils-000817/gas/config/m88k-opcode.h	Mon May  3 17:28:41 1999
+++ gas/config/m88k-opcode.h	Sun Aug 20 23:17:42 2000
@@ -2,5 +2,5 @@
    Contributed by Devon Bowen of Buffalo University
    and Torbjorn Granlund of the Swedish Institute of Computer Science.
-   Copyright (C) 1989, 1990, 1991 Free Software Foundation, Inc.
+   Copyright 1989, 1990, 1991 Free Software Foundation, Inc.
 
 This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/obj-aout.c	Fri Jun 30 09:04:29 2000
+++ gas/config/obj-aout.c	Sun Aug 20 23:20:23 2000
@@ -1,5 +1,5 @@
 /* a.out object file format
-   Copyright (C) 1989, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000
-   Free Software Foundation, Inc.
+   Copyright 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
+   2000 Free Software Foundation, Inc.
 
 This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/obj-aout.h	Thu Jan 27 09:48:31 2000
+++ gas/config/obj-aout.h	Sun Aug 20 23:17:42 2000
@@ -1,4 +1,4 @@
 /* obj-aout.h, a.out object file format for gas, the assembler.
-   Copyright (C) 1989, 90, 91, 92, 93, 94, 95, 96, 98, 99, 2000
+   Copyright 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/gas/config/obj-bout.c	Sat Aug 12 04:28:04 2000
+++ gas/config/obj-bout.c	Sun Aug 20 23:17:42 2000
@@ -1,4 +1,4 @@
 /* b.out object file format
-   Copyright (C) 1989, 90, 91, 92, 93, 94, 95, 96, 2000
+   Copyright 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/gas/config/obj-bout.h	Mon May  3 17:28:41 1999
+++ gas/config/obj-bout.h	Sun Aug 20 23:17:42 2000
@@ -1,4 +1,4 @@
 /* b.out object file format
-   Copyright (C) 1989, 90, 91, 92, 93, 94, 95, 1996
+   Copyright 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996
    Free Software Foundation, Inc.
 
--- ../binutils-000817/gas/config/obj-coff.c	Tue Aug 15 05:41:40 2000
+++ gas/config/obj-coff.c	Sun Aug 20 23:20:30 2000
@@ -1,5 +1,5 @@
 /* coff object file format
-   Copyright (C) 1989, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000
-   Free Software Foundation, Inc.
+   Copyright 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
+   2000 Free Software Foundation, Inc.
 
    This file is part of GAS.
--- ../binutils-000817/gas/config/obj-coff.h	Tue Jun 20 23:52:29 2000
+++ gas/config/obj-coff.h	Sun Aug 20 23:17:42 2000
@@ -1,4 +1,4 @@
 /* coff object file format
-   Copyright (C) 1989, 90, 91, 92, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1989, 1990, 1991, 1992, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/gas/config/obj-ecoff.c	Tue May 23 07:19:43 2000
+++ gas/config/obj-ecoff.c	Sun Aug 20 23:17:42 2000
@@ -1,4 +1,4 @@
 /* ECOFF object file format.
-   Copyright (C) 1993, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
    Contributed by Cygnus Support.
--- ../binutils-000817/gas/config/obj-ecoff.h	Thu Jun  3 10:29:14 1999
+++ gas/config/obj-ecoff.h	Sun Aug 20 23:17:42 2000
@@ -1,4 +1,4 @@
 /* ECOFF object file format header file.
-   Copyright (C) 1993, 94, 95, 96, 97, 1999 Free Software Foundation, Inc.
+   Copyright 1993, 1994, 1995, 1996, 1997, 1999 Free Software Foundation, Inc.
    Contributed by Cygnus Support.
    Written by Ian Lance Taylor <ian@cygnus.com>.
--- ../binutils-000817/gas/config/obj-elf.c	Sat Jul 29 13:20:54 2000
+++ gas/config/obj-elf.c	Sun Aug 20 23:17:42 2000
@@ -1,4 +1,4 @@
 /* ELF object file format
-   Copyright (C) 1992, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/gas/config/obj-elf.h	Tue May 23 07:19:43 2000
+++ gas/config/obj-elf.h	Sun Aug 20 23:17:42 2000
@@ -1,4 +1,4 @@
 /* ELF object file format.
-   Copyright (C) 1992, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/gas/config/obj-evax.c	Mon May  3 17:28:41 1999
+++ gas/config/obj-evax.c	Sun Aug 20 23:17:42 2000
@@ -1,4 +1,4 @@
 /* obj-evax.c - EVAX (openVMS/Alpha) object file format.
-   Copyright (C) 1996, 1997 Free Software Foundation, Inc.
+   Copyright 1996, 1997 Free Software Foundation, Inc.
    Contributed by Klaus Kämpf (kkaempf@progis.de) of
      proGIS Software, Aachen, Germany.
--- ../binutils-000817/gas/config/obj-evax.h	Tue Mar 14 07:46:07 2000
+++ gas/config/obj-evax.h	Sun Aug 20 23:17:42 2000
@@ -1,4 +1,4 @@
 /* This file is obj-evax.h
-   Copyright (C) 1996, 2000 Free Software Foundation, Inc.
+   Copyright 1996, 2000 Free Software Foundation, Inc.
    Contributed by Klaus Kämpf (kkaempf@progis.de) of
      proGIS Software, Aachen, Germany.
--- ../binutils-000817/gas/config/obj-generic.c	Mon May  3 17:28:42 1999
+++ gas/config/obj-generic.c	Sun Aug 20 23:17:42 2000
@@ -2,5 +2,5 @@
    object format specific source files.
 
-   Copyright (C) 1987-1992 Free Software Foundation, Inc.
+   Copyright 1987, 1988, 1989, 1990, 1991, 1992 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/obj-generic.h	Mon May  3 17:28:42 1999
+++ gas/config/obj-generic.h	Sun Aug 20 23:17:42 2000
@@ -1,4 +1,4 @@
 /* This file is obj-generic.h
-   Copyright (C) 1987-1992 Free Software Foundation, Inc.
+   Copyright 1987, 1988, 1989, 1990, 1991, 1992 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/obj-hp300.c	Mon May  3 17:28:42 1999
+++ gas/config/obj-hp300.c	Sun Aug 20 23:17:42 2000
@@ -1,4 +1,4 @@
 /* This file is obj-hp300.h
-   Copyright (C) 1993 Free Software Foundation, Inc.
+   Copyright 1993 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/obj-hp300.h	Mon May  3 17:28:42 1999
+++ gas/config/obj-hp300.h	Sun Aug 20 23:17:42 2000
@@ -1,4 +1,4 @@
 /* This file is obj-hp300.h
-   Copyright (C) 1993 Free Software Foundation, Inc.
+   Copyright 1993 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/obj-ieee.c	Wed Aug  2 05:02:49 2000
+++ gas/config/obj-ieee.c	Sun Aug 20 23:17:42 2000
@@ -1,4 +1,4 @@
 /* obj-format for ieee-695 records.
-   Copyright (C) 1991, 92, 93, 94, 95, 97, 98, 2000
+   Copyright 1991, 1992, 1993, 1994, 1995, 1997, 1998, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/gas/config/obj-ieee.h	Tue May  2 10:12:52 2000
+++ gas/config/obj-ieee.h	Sun Aug 20 23:17:42 2000
@@ -1,5 +1,5 @@
 /* This file is obj-ieee.h
 
-   Copyright (C) 1987-1992 Free Software Foundation, Inc.
+   Copyright 1987, 1988, 1989, 1990, 1991, 1992 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/obj-multi.h	Tue May 23 07:19:43 2000
+++ gas/config/obj-multi.h	Sun Aug 20 23:17:42 2000
@@ -1,4 +1,4 @@
 /* Multiple object format emulation.
-   Copyright (C) 1995, 96, 97, 99, 2000
+   Copyright 1995, 1996, 1997, 1999, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/gas/config/obj-som.c	Wed Aug  2 05:02:49 2000
+++ gas/config/obj-som.c	Sun Aug 20 23:17:42 2000
@@ -1,4 +1,4 @@
 /* SOM object file format.
-   Copyright (C) 1993, 1998, 2000 Free Software Foundation, Inc.
+   Copyright 1993, 1998, 2000 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/obj-som.h	Tue May  2 10:12:52 2000
+++ gas/config/obj-som.h	Sun Aug 20 23:17:42 2000
@@ -1,4 +1,4 @@
 /* SOM object file format.
-   Copyright (C) 1993, 1994, 1995, 1998 Free Software Foundation, Inc.
+   Copyright 1993, 1994, 1995, 1998 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/obj-vms.c	Sat Jul  8 02:58:24 2000
+++ gas/config/obj-vms.c	Sun Aug 20 23:17:42 2000
@@ -1,4 +1,5 @@
 /* vms.c -- Write out a VAX/VMS object file
-   Copyright (C) 1987, 88, 92, 94, 95, 97, 1998 Free Software Foundation, Inc.
+   Copyright 1987, 1988, 1992, 1994, 1995, 1997, 1998
+   Free Software Foundation, Inc.
 
 This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/obj-vms.h	Thu Jun  3 10:29:18 1999
+++ gas/config/obj-vms.h	Sun Aug 20 23:17:42 2000
@@ -1,4 +1,4 @@
 /* VMS object file format
-   Copyright (C) 1989, 90, 91, 92, 93, 94, 95, 96, 97, 1999
+   Copyright 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1999
    Free Software Foundation, Inc.
 
--- ../binutils-000817/gas/config/tc-a29k.c	Sat Jul  8 02:58:24 2000
+++ gas/config/tc-a29k.c	Sun Aug 20 23:17:42 2000
@@ -1,4 +1,4 @@
 /* tc-a29k.c -- Assemble for the AMD 29000.
-   Copyright (C) 1989, 90, 91, 92, 93, 94, 95, 1998
+   Copyright 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1998
    Free Software Foundation, Inc.
 
--- ../binutils-000817/gas/config/tc-a29k.h	Mon May  3 17:28:42 1999
+++ gas/config/tc-a29k.h	Sun Aug 20 23:17:42 2000
@@ -1,4 +1,5 @@
 /* tc-a29k.h -- Assemble for the AMD 29000.
-   Copyright (C) 1989, 90, 91, 92, 93, 95, 1998 Free Software Foundation, Inc.
+   Copyright 1989, 1990, 1991, 1992, 1993, 1995, 1998
+   Free Software Foundation, Inc.
 
 This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/tc-alpha.c	Sat Jul  8 02:58:24 2000
+++ gas/config/tc-alpha.c	Sun Aug 20 23:17:43 2000
@@ -1,4 +1,5 @@
 /* tc-alpha.c - Processor-specific code for the DEC Alpha AXP CPU.
-   Copyright (C) 1989, 93-98, 1999 Free Software Foundation, Inc.
+   Copyright 1989, 1993, 1994, 1995, 1996, 1997, 1998, 1999
+   Free Software Foundation, Inc.
    Contributed by Carnegie Mellon University, 1993.
    Written by Alessandro Forin, based on earlier gas-1.38 target CPU files.
--- ../binutils-000817/gas/config/tc-alpha.h	Mon Nov 29 11:46:16 1999
+++ gas/config/tc-alpha.h	Sun Aug 20 23:17:43 2000
@@ -1,4 +1,4 @@
 /* This file is tc-alpha.h
-   Copyright (C) 1994, 95, 96, 97, 98, 1999 Free Software Foundation, Inc.
+   Copyright 1994, 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
    Written by Ken Raeburn <raeburn@cygnus.com>.
 
--- ../binutils-000817/gas/config/tc-arc.c	Wed Jun 23 00:52:51 1999
+++ gas/config/tc-arc.c	Sun Aug 20 23:17:43 2000
@@ -1,4 +1,4 @@
 /* tc-arc.c -- Assembler for the ARC
-   Copyright (C) 1994, 1995, 1997, 1998, 1999 Free Software Foundation, Inc.
+   Copyright 1994, 1995, 1997, 1998, 1999 Free Software Foundation, Inc.
    Contributed by Doug Evans (dje@cygnus.com).
 
--- ../binutils-000817/gas/config/tc-arc.h	Thu Jun  3 10:29:22 1999
+++ gas/config/tc-arc.h	Sun Aug 20 23:17:43 2000
@@ -1,4 +1,4 @@
 /* tc-arc.h - Macros and type defines for the ARC.
-   Copyright (C) 1994, 1995, 1997, 1999 Free Software Foundation, Inc.
+   Copyright 1994, 1995, 1997, 1999 Free Software Foundation, Inc.
    Contributed by Doug Evans (dje@cygnus.com).
 
--- ../binutils-000817/gas/config/tc-arm.c	Thu Aug 17 05:01:59 2000
+++ gas/config/tc-arm.c	Sun Aug 20 23:17:43 2000
@@ -1,4 +1,4 @@
 /* tc-arm.c -- Assemble for the ARM
-   Copyright (C) 1994, 95, 96, 97, 98, 1999, 2000
+   Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
    Contributed by Richard Earnshaw (rwe@pegasus.esprit.ec.org)
--- ../binutils-000817/gas/config/tc-arm.h	Thu Oct 28 04:12:32 1999
+++ gas/config/tc-arm.h	Sun Aug 20 23:17:43 2000
@@ -1,4 +1,4 @@
 /* This file is tc-arm.h
-   Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999
+   Copyright 1994, 1995, 1996, 1997, 1998, 1999
    Free Software Foundation, Inc.
    Contributed by Richard Earnshaw (rwe@pegasus.esprit.ec.org)
--- ../binutils-000817/gas/config/tc-avr.c	Mon Aug  7 00:03:58 2000
+++ gas/config/tc-avr.c	Sun Aug 20 23:17:43 2000
@@ -1,5 +1,5 @@
 /* tc-avr.c -- Assembler code for the ATMEL AVR
 
-   Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1999, 2000 Free Software Foundation, Inc.
    Contributed by Denis Chertykov <denisc@overta.ru>
 
--- ../binutils-000817/gas/config/tc-avr.h	Tue Jul  4 08:25:33 2000
+++ gas/config/tc-avr.h	Sun Aug 20 23:17:43 2000
@@ -1,4 +1,4 @@
 /* This file is tc-avr.h
-   Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1999, 2000 Free Software Foundation, Inc.
 
    Contributed by Denis Chertykov <denisc@overta.ru>
--- ../binutils-000817/gas/config/tc-cris.c	Sat Aug  5 04:43:45 2000
+++ gas/config/tc-cris.c	Sun Aug 20 23:17:43 2000
@@ -1,4 +1,4 @@
 /* tc-cris.c -- Assembler code for the CRIS CPU core.
-   Copyright (C) 2000 Free Software Foundation, Inc.
+   Copyright 2000 Free Software Foundation, Inc.
 
    Contributed by Axis Communications AB, Lund, Sweden.
--- ../binutils-000817/gas/config/tc-cris.h	Fri Jul 21 03:45:27 2000
+++ gas/config/tc-cris.h	Sun Aug 20 23:17:43 2000
@@ -1,4 +1,4 @@
 /* tc-cris.h -- Header file for tc-cris.c, the CRIS GAS port.
-   Copyright (C) 2000 Free Software Foundation, Inc.
+   Copyright 2000 Free Software Foundation, Inc.
 
    Contributed by Axis Communications AB, Lund, Sweden.
--- ../binutils-000817/gas/config/tc-d10v.c	Fri Aug  4 11:01:32 2000
+++ gas/config/tc-d10v.c	Sun Aug 20 23:17:43 2000
@@ -1,4 +1,4 @@
 /* tc-d10v.c -- Assembler code for the Mitsubishi D10V
-   Copyright (C) 1996, 97, 98, 99, 2000 Free Software Foundation.
+   Copyright 1996, 1997, 1998, 1999, 2000 Free Software Foundation.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/tc-d10v.h	Thu Apr 13 03:59:32 2000
+++ gas/config/tc-d10v.h	Sun Aug 20 23:17:43 2000
@@ -1,4 +1,4 @@
 /* tc-d10v.h -- Header file for tc-d10v.c.
-   Copyright (C) 1996, 1997 Free Software Foundation, Inc.
+   Copyright 1996, 1997 Free Software Foundation, Inc.
    Written by Martin Hunt, Cygnus Support.
 
--- ../binutils-000817/gas/config/tc-d30v.c	Tue Aug  1 08:46:36 2000
+++ gas/config/tc-d30v.c	Sun Aug 20 23:17:43 2000
@@ -1,4 +1,4 @@
 /* tc-d30v.c -- Assembler code for the Mitsubishi D30V
-   Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation.
+   Copyright 1997, 1998, 1999, 2000 Free Software Foundation.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/tc-d30v.h	Thu Jul  6 17:01:38 2000
+++ gas/config/tc-d30v.h	Sun Aug 20 23:17:43 2000
@@ -1,4 +1,4 @@
 /* tc-310v.h -- Header file for tc-d30v.c.
-   Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc.
+   Copyright 1997, 1998, 1999 Free Software Foundation, Inc.
    Written by Martin Hunt, Cygnus Support.
 
--- ../binutils-000817/gas/config/tc-fr30.c	Wed Jun 23 00:52:54 1999
+++ gas/config/tc-fr30.c	Sun Aug 20 23:17:43 2000
@@ -1,4 +1,4 @@
 /* tc-fr30.c -- Assembler for the Fujitsu FR30.
-   Copyright (C) 1998, 1999 Free Software Foundation.
+   Copyright 1998, 1999 Free Software Foundation.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/tc-fr30.h	Mon May  3 17:28:42 1999
+++ gas/config/tc-fr30.h	Sun Aug 20 23:17:43 2000
@@ -1,4 +1,4 @@
 /* tc-fr30.h -- Header file for tc-fr30.c.
-   Copyright (C) 1998 Free Software Foundation, Inc.
+   Copyright 1998 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/tc-generic.h	Mon May  3 17:28:42 1999
+++ gas/config/tc-generic.h	Sun Aug 20 23:17:43 2000
@@ -1,5 +1,5 @@
 /* This file is tc-generic.h
 
-   Copyright (C) 1987, 91, 92, 95, 1997 Free Software Foundation, Inc.
+   Copyright 1987, 1991, 1992, 1995, 1997 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/tc-h8300.c	Sat Jul  8 02:58:24 2000
+++ gas/config/tc-h8300.c	Sun Aug 20 23:17:43 2000
@@ -1,4 +1,4 @@
 /* tc-h8300.c -- Assemble code for the Hitachi H8/300
-   Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98, 2000
+   Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2000
    Free Software Foundation.
 
--- ../binutils-000817/gas/config/tc-h8300.h	Mon May  3 17:28:42 1999
+++ gas/config/tc-h8300.h	Sun Aug 20 23:20:34 2000
@@ -1,5 +1,5 @@
 /* This file is tc-h8300.h
-   Copyright (C) 1987-1992, 93, 94, 95, 96, 97, 1998
-   Free Software Foundation, Inc.
+   Copyright 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
+   1998 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/tc-h8500.c	Tue Jul 11 04:59:26 2000
+++ gas/config/tc-h8500.c	Sun Aug 20 23:17:43 2000
@@ -1,4 +1,4 @@
 /* tc-h8500.c -- Assemble code for the Hitachi H8/500
-   Copyright (C) 1993, 94, 95, 98, 2000 Free Software Foundation.
+   Copyright 1993, 1994, 1995, 1998, 2000 Free Software Foundation.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/tc-h8500.h	Mon May  3 17:28:42 1999
+++ gas/config/tc-h8500.h	Sun Aug 20 23:17:43 2000
@@ -1,4 +1,4 @@
 /* This file is tc-h8500.h
-   Copyright (C) 1993, 95, 97, 1998 Free Software Foundation, Inc.
+   Copyright 1993, 1995, 1997, 1998 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/tc-hppa.c	Fri Jul 28 15:05:20 2000
+++ gas/config/tc-hppa.c	Sun Aug 20 23:17:43 2000
@@ -1,4 +1,4 @@
 /* tc-hppa.c -- Assemble for the PA
-   Copyright (C) 1989, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1989, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/gas/config/tc-hppa.h	Fri Jul 28 15:05:20 2000
+++ gas/config/tc-hppa.h	Sun Aug 20 23:17:43 2000
@@ -1,4 +1,4 @@
 /* tc-hppa.h -- Header file for the PA
-   Copyright (C) 1989, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1989, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/gas/config/tc-i370.c	Sat Jul  8 02:58:24 2000
+++ gas/config/tc-i370.c	Sun Aug 20 23:17:43 2000
@@ -1,5 +1,6 @@
 /* tc-i370.c -- Assembler for the IBM 360/370/390 instruction set.
    Loosely based on the ppc files by Linas Vepstas <linas@linas.org> 1998, 99
-   Copyright (C) 1994, 95, 96, 97, 98, 99, 2000 Free Software Foundation, Inc.
+   Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000
+   Free Software Foundation, Inc.
    Written by Ian Lance Taylor, Cygnus Support.
 
--- ../binutils-000817/gas/config/tc-i370.h	Thu Feb 24 00:52:21 2000
+++ gas/config/tc-i370.h	Sun Aug 20 23:17:43 2000
@@ -1,4 +1,4 @@
 /* tc-i370.h -- Header file for tc-i370.c.
-   Copyright (C) 1994, 95, 96, 97, 98, 2000 Free Software Foundation, Inc.
+   Copyright 1994, 1995, 1996, 1997, 1998, 2000 Free Software Foundation, Inc.
    Written by Ian Lance Taylor, Cygnus Support.
 
--- ../binutils-000817/gas/config/tc-i386.c	Tue Aug 15 07:12:47 2000
+++ gas/config/tc-i386.c	Sun Aug 20 23:17:43 2000
@@ -1,4 +1,4 @@
 /* i386.c -- Assemble code for the Intel 80386
-   Copyright (C) 1989, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1989, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/gas/config/tc-i386.h	Sat May 13 19:26:22 2000
+++ gas/config/tc-i386.h	Sun Aug 20 23:17:43 2000
@@ -1,4 +1,4 @@
 /* tc-i386.h -- Header file for tc-i386.c
-   Copyright (C) 1989, 92, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation.
 
--- ../binutils-000817/gas/config/tc-i860.c	Thu Aug 17 07:34:45 2000
+++ gas/config/tc-i860.c	Sun Aug 20 23:17:43 2000
@@ -1,4 +1,4 @@
 /* tc-i860.c -- Assembler for the Intel i860 architecture.
-   Copyright (C) 1989, 1992, 1993, 1994, 1995, 1998, 1999, 2000
+   Copyright 1989, 1992, 1993, 1994, 1995, 1998, 1999, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/gas/config/tc-i860.h	Wed Aug  9 13:33:42 2000
+++ gas/config/tc-i860.h	Sun Aug 20 23:17:43 2000
@@ -1,4 +1,4 @@
 /* tc-i860.h -- Header file for the i860.
-   Copyright (C) 1991, 1992, 1995, 1998, 2000
+   Copyright 1991, 1992, 1995, 1998, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/gas/config/tc-i960.c	Fri Jun  9 10:00:03 2000
+++ gas/config/tc-i960.c	Sun Aug 20 23:17:43 2000
@@ -1,4 +1,4 @@
 /* tc-i960.c - All the i80960-specific stuff
-   Copyright (C) 1989, 90, 91, 92, 93, 94, 95, 96, 97, 98, 1999
+   Copyright 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
    Free Software Foundation, Inc.
 
--- ../binutils-000817/gas/config/tc-i960.h	Thu Jun  3 10:29:30 1999
+++ gas/config/tc-i960.h	Sun Aug 20 23:17:43 2000
@@ -1,4 +1,4 @@
 /* tc-i960.h - Basic 80960 instruction formats.
-   Copyright (C) 1989, 90, 91, 92, 93, 94, 95, 96, 97, 98, 1999
+   Copyright 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
    Free Software Foundation, Inc.
 
--- ../binutils-000817/gas/config/tc-ia64.c	Thu Aug 17 09:20:14 2000
+++ gas/config/tc-ia64.c	Sun Aug 20 23:17:44 2000
@@ -1,4 +1,4 @@
 /* tc-ia64.c -- Assembler for the HP/Intel IA-64 architecture.
-   Copyright (C) 1998, 1999, 2000 Free Software Foundation.
+   Copyright 1998, 1999, 2000 Free Software Foundation.
    Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
 
--- ../binutils-000817/gas/config/tc-ia64.h	Thu May 25 12:00:14 2000
+++ gas/config/tc-ia64.h	Sun Aug 20 23:17:44 2000
@@ -1,4 +1,4 @@
 /* tc-ia64.h -- Header file for tc-ia64.c.
-   Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1998, 1999, 2000 Free Software Foundation, Inc.
    Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
 
--- ../binutils-000817/gas/config/tc-m32r.c	Fri Aug  4 11:01:32 2000
+++ gas/config/tc-m32r.c	Sun Aug 20 23:17:45 2000
@@ -1,4 +1,4 @@
 /* tc-m32r.c -- Assembler for the Mitsubishi M32R.
-   Copyright (C) 1996, 1997, 1998, 1999, 2000
+   Copyright 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/gas/config/tc-m32r.h	Mon May  3 17:28:42 1999
+++ gas/config/tc-m32r.h	Sun Aug 20 23:17:45 2000
@@ -1,4 +1,4 @@
 /* tc-m32r.h -- Header file for tc-m32r.c.
-   Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
+   Copyright 1996, 1997, 1998 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/tc-m68851.h	Mon May  3 17:28:43 1999
+++ gas/config/tc-m68851.h	Sun Aug 20 23:17:45 2000
@@ -1,5 +1,5 @@
 /* This file is tc-m68851.h
 
-   Copyright (C) 1987-1992 Free Software Foundation, Inc.
+   Copyright 1987, 1988, 1989, 1990, 1991, 1992 Free Software Foundation, Inc.
    
    This file is part of GAS, the GNU Assembler.
@@ -26,5 +26,5 @@
    to us as part of the changes for the m68851 Memory Management Unit */
 
-/* Copyright (C) 1987 Free Software Foundation, Inc.
+/* Copyright 1987 Free Software Foundation, Inc.
    
    This file is part of Gas, the GNU Assembler.
--- ../binutils-000817/gas/config/tc-m68hc11.c	Wed Aug  9 07:40:33 2000
+++ gas/config/tc-m68hc11.c	Sun Aug 20 23:17:45 2000
@@ -1,4 +1,4 @@
 /* tc-m68hc11.c -- Assembler code for the Motorola 68HC11 & 68HC12.
-   Copyright (C) 1999, 2000 Free Software Foundation.
+   Copyright 1999, 2000 Free Software Foundation.
    Written by Stephane Carrez (stcarrez@worldnet.fr)
 
--- ../binutils-000817/gas/config/tc-m68hc11.h	Mon Jun 19 11:22:40 2000
+++ gas/config/tc-m68hc11.h	Sun Aug 20 23:17:45 2000
@@ -1,4 +1,4 @@
 /* tc-m68hc11.h -- Header file for tc-m68hc11.c.
-   Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1999, 2000 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/tc-m68k.c	Tue Aug  1 08:08:14 2000
+++ gas/config/tc-m68k.c	Sun Aug 20 23:17:45 2000
@@ -1,4 +1,4 @@
 /* tc-m68k.c -- Assemble for the m68k family
-   Copyright (C) 1987, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1987, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/gas/config/tc-m68k.h	Thu Feb 24 12:56:31 2000
+++ gas/config/tc-m68k.h	Sun Aug 20 23:20:38 2000
@@ -1,5 +1,5 @@
 /* This file is tc-m68k.h
-   Copyright (C) 1987, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000
-   Free Software Foundation, Inc.
+   Copyright 1987, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
+   1999, 2000 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/tc-m88k.c	Fri Jun  2 12:52:10 2000
+++ gas/config/tc-m88k.c	Sun Aug 20 23:17:45 2000
@@ -2,5 +2,5 @@
    Contributed by Devon Bowen of Buffalo University
    and Torbjorn Granlund of the Swedish Institute of Computer Science.
-   Copyright (C) 1989, 90, 91, 92, 93, 94, 95, 96, 97, 98, 1999
+   Copyright 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
    Free Software Foundation, Inc.
 
--- ../binutils-000817/gas/config/tc-m88k.h	Thu Feb 24 12:56:31 2000
+++ gas/config/tc-m88k.h	Sun Aug 20 23:17:45 2000
@@ -2,5 +2,5 @@
    Contributed by Devon Bowen of Buffalo University
    and Torbjorn Granlund of the Swedish Institute of Computer Science.
-   Copyright (C) 1989, 90, 91, 92, 93, 94, 95, 96, 97, 2000
+   Copyright 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/gas/config/tc-mcore.c	Fri Jun  2 12:52:10 2000
+++ gas/config/tc-mcore.c	Sun Aug 20 23:17:45 2000
@@ -1,4 +1,4 @@
 /* tc-mcore.c -- Assemble code for M*Core
-   Copyright (C) 1999, 2000 Free Software Foundation.
+   Copyright 1999, 2000 Free Software Foundation.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/tc-mcore.h	Fri Feb 11 08:31:13 2000
+++ gas/config/tc-mcore.h	Sun Aug 20 23:17:45 2000
@@ -1,5 +1,5 @@
 /* This file is tc-mcore.h
 
-   Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1999, 2000 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/tc-mips.c	Sat Jul 15 08:28:24 2000
+++ gas/config/tc-mips.c	Sun Aug 20 23:17:45 2000
@@ -1,4 +1,5 @@
 /* tc-mips.c -- assemble code for a MIPS chip.
-   Copyright (C) 1993, 94, 95, 96, 97, 98, 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
+   Free Software Foundation, Inc.
    Contributed by the OSF and Ralph Campbell.
    Written by Keith Knowles and Ralph Campbell, working independently.
--- ../binutils-000817/gas/config/tc-mips.h	Thu Jun 15 19:30:30 2000
+++ gas/config/tc-mips.h	Sun Aug 20 23:17:45 2000
@@ -1,4 +1,5 @@
 /* tc-mips.h -- header file for tc-mips.c.
-   Copyright (C) 1993, 94, 95, 96, 97, 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1993, 1994, 1995, 1996, 1997, 1999, 2000
+   Free Software Foundation, Inc.
    Contributed by the OSF and Ralph Campbell.
    Written by Keith Knowles and Ralph Campbell, working independently.
--- ../binutils-000817/gas/config/tc-mn10200.c	Tue Jul 18 07:06:14 2000
+++ gas/config/tc-mn10200.c	Sun Aug 20 23:17:45 2000
@@ -1,4 +1,4 @@
 /* tc-mn10200.c -- Assembler code for the Matsushita 10200
-   Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation.
+   Copyright 1996, 1997, 1998, 1999 Free Software Foundation.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/tc-mn10200.h	Mon May  3 17:28:43 1999
+++ gas/config/tc-mn10200.h	Sun Aug 20 23:17:45 2000
@@ -1,4 +1,4 @@
 /* tc-mn10200.h -- Header file for tc-mn10200.c.
-   Copyright (C) 1996, 1997 Free Software Foundation, Inc.
+   Copyright 1996, 1997 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/tc-mn10300.c	Fri Jul 28 13:33:32 2000
+++ gas/config/tc-mn10300.c	Sun Aug 20 23:17:45 2000
@@ -1,4 +1,4 @@
 /* tc-mn10300.c -- Assembler code for the Matsushita 10300
-   Copyright (C) 1996, 1997, 1998, 1999, 2000 Free Software Foundation.
+   Copyright 1996, 1997, 1998, 1999, 2000 Free Software Foundation.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/tc-mn10300.h	Tue Aug 15 03:49:55 2000
+++ gas/config/tc-mn10300.h	Sun Aug 20 23:17:45 2000
@@ -1,4 +1,4 @@
 /* tc-mn10300.h -- Header file for tc-mn10300.c.
-   Copyright (C) 1996, 1997, 2000 Free Software Foundation, Inc.
+   Copyright 1996, 1997, 2000 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/tc-ns32k.c	Fri Jul 28 10:42:18 2000
+++ gas/config/tc-ns32k.c	Sun Aug 20 23:17:45 2000
@@ -1,4 +1,4 @@
 /* ns32k.c  -- Assemble on the National Semiconductor 32k series
-   Copyright (C) 1987, 92, 93, 94, 95, 96, 97, 98, 1999, 2000
+   Copyright 1987, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/gas/config/tc-ns32k.h	Thu Jun  3 10:29:38 1999
+++ gas/config/tc-ns32k.h	Sun Aug 20 23:17:45 2000
@@ -1,4 +1,5 @@
 /* tc-ns32k.h -- Opcode table for National Semi 32k processor
-   Copyright (C) 1987, 92, 93, 94, 95, 97, 1999 Free Software Foundation, Inc.
+   Copyright 1987, 1992, 1993, 1994, 1995, 1997, 1999
+   Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/tc-pj.c	Tue Jul 18 07:24:35 2000
+++ gas/config/tc-pj.c	Sun Aug 20 23:17:43 2000
@@ -1,5 +1,5 @@
 /*-
    tc-pj.c -- Assemble code for Pico Java
-   Copyright (C) 1999 Free Software Foundation.
+   Copyright 1999 Free Software Foundation.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/tc-pj.h	Sun Sep  5 03:29:22 1999
+++ gas/config/tc-pj.h	Sun Aug 20 23:17:45 2000
@@ -1,5 +1,5 @@
 /*-This file is tc-pj.h
 
-   Copyright (C) 1999 Free Software Foundation, Inc.
+   Copyright 1999 Free Software Foundation, Inc.
 
    Contributed by Steve Chamberlain of Transmeta, sac@pobox.com
--- ../binutils-000817/gas/config/tc-ppc.c	Sat Jul  8 02:58:24 2000
+++ gas/config/tc-ppc.c	Sun Aug 20 23:17:46 2000
@@ -1,4 +1,4 @@
 /* tc-ppc.c -- Assemble for the PowerPC or POWER (RS/6000)
-   Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000 
+   Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
    Written by Ian Lance Taylor, Cygnus Support.
--- ../binutils-000817/gas/config/tc-ppc.h	Thu Apr 27 01:09:43 2000
+++ gas/config/tc-ppc.h	Sun Aug 20 23:17:46 2000
@@ -1,4 +1,4 @@
 /* tc-ppc.h -- Header file for tc-ppc.c.
-   Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000
+   Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
    Written by Ian Lance Taylor, Cygnus Support.
--- ../binutils-000817/gas/config/tc-sh.c	Wed Aug 16 06:47:19 2000
+++ gas/config/tc-sh.c	Sun Aug 20 23:17:46 2000
@@ -1,4 +1,5 @@
 /* tc-sh.c -- Assemble code for the Hitachi Super-H
-   Copyright (C) 1993, 94, 95, 96, 97, 98, 99, 2000 Free Software Foundation.
+   Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
+   Free Software Foundation.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/tc-sh.h	Wed Aug 16 06:47:19 2000
+++ gas/config/tc-sh.h	Sun Aug 20 23:17:46 2000
@@ -1,4 +1,5 @@
 /* This file is tc-sh.h
-   Copyright (C) 1993, 94, 95, 96, 97, 98, 99, 2000 Free Software Foundation, Inc.
+   Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
+   Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/tc-sparc.c	Thu Aug 17 03:52:37 2000
+++ gas/config/tc-sparc.c	Sun Aug 20 23:20:42 2000
@@ -1,5 +1,5 @@
 /* tc-sparc.c -- Assemble for the SPARC
-   Copyright (C) 1989, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000
-   Free Software Foundation, Inc.
+   Copyright 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
+   2000 Free Software Foundation, Inc.
    This file is part of GAS, the GNU Assembler.
 
--- ../binutils-000817/gas/config/tc-sparc.h	Mon Aug  9 02:04:36 1999
+++ gas/config/tc-sparc.h	Sun Aug 20 23:17:46 2000
@@ -1,4 +1,5 @@
 /* tc-sparc.h - Macros and type defines for the sparc.
-   Copyright (C) 1989, 90-96, 97, 98, 1999 Free Software Foundation, Inc.
+   Copyright 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
+   Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/tc-tahoe.h	Mon May  3 17:28:43 1999
+++ gas/config/tc-tahoe.h	Sun Aug 20 23:17:46 2000
@@ -1,5 +1,5 @@
 /* This file is tc-tahoe.h
 
-   Copyright (C) 1987-1992 Free Software Foundation, Inc.
+   Copyright 1987, 1988, 1989, 1990, 1991, 1992 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/tc-tic30.c	Fri Jun  2 12:52:10 2000
+++ gas/config/tc-tic30.c	Sun Aug 20 23:17:46 2000
@@ -1,4 +1,4 @@
 /* tc-c30.c -- Assembly code for the Texas Instruments TMS320C30
-   Copyright (C) 1998, 1999 Free Software Foundation.
+   Copyright 1998, 1999 Free Software Foundation.
    Contributed by Steven Haworth (steve@pm.cse.rmit.edu.au)
 
--- ../binutils-000817/gas/config/tc-tic30.h	Mon May  3 17:28:43 1999
+++ gas/config/tc-tic30.h	Sun Aug 20 23:17:46 2000
@@ -1,4 +1,4 @@
 /* tc-tic30.h -- Header file for tc-tic30.c
-   Copyright (C) 1998 Free Software Foundation.
+   Copyright 1998 Free Software Foundation.
    Contributed by Steven Haworth (steve@pm.cse.rmit.edu.au)
 
--- ../binutils-000817/gas/config/tc-tic54x.c	Wed Jul 12 04:48:17 2000
+++ gas/config/tc-tic54x.c	Sun Aug 20 23:17:46 2000
@@ -1,4 +1,4 @@
 /* tc-tic54x.c -- Assembly code for the Texas Instruments TMS320C54X
-   Copyright (C) 1999, 2000 Free Software Foundation.
+   Copyright 1999, 2000 Free Software Foundation.
    Contributed by Timothy Wall (twall@cygnus.com)
 
--- ../binutils-000817/gas/config/tc-tic54x.h	Tue Jun 20 23:52:29 2000
+++ gas/config/tc-tic54x.h	Sun Aug 20 23:17:46 2000
@@ -1,4 +1,4 @@
 /* tc-tic54x.h -- Header file for tc-tic54x.c
-   Copyright (C) 1999, 2000 Free Software Foundation.
+   Copyright 1999, 2000 Free Software Foundation.
    Contributed by Timothy Wall (twall@alum.mit.edu)
 
--- ../binutils-000817/gas/config/tc-tic80.c	Tue Jul 18 07:24:35 2000
+++ gas/config/tc-tic80.c	Sun Aug 20 23:17:46 2000
@@ -1,4 +1,4 @@
 /* tc-tic80.c -- Assemble for the TI TMS320C80 (MV)
-   Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
+   Copyright 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/tc-tic80.h	Mon May  3 17:28:43 1999
+++ gas/config/tc-tic80.h	Sun Aug 20 23:17:46 2000
@@ -1,4 +1,4 @@
 /* This file is tc-tic80.h
-   Copyright (C) 1996, 1997, 1999 Free Software Foundation, Inc.
+   Copyright 1996, 1997, 1999 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/tc-v850.c	Wed Aug  2 05:02:49 2000
+++ gas/config/tc-v850.c	Sun Aug 20 23:17:46 2000
@@ -1,4 +1,4 @@
 /* tc-v850.c -- Assembler code for the NEC V850
-   Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation.
+   Copyright 1996, 1997, 1998, 1999 Free Software Foundation.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/tc-v850.h	Mon May  3 17:28:43 1999
+++ gas/config/tc-v850.h	Sun Aug 20 23:17:46 2000
@@ -1,4 +1,4 @@
 /* tc-v850.h -- Header file for tc-v850.c.
-   Copyright (C) 1996, 1997 Free Software Foundation, Inc.
+   Copyright 1996, 1997 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/tc-vax.c	Mon Jun 26 03:59:21 2000
+++ gas/config/tc-vax.c	Sun Aug 20 23:17:46 2000
@@ -1,4 +1,4 @@
 /* tc-vax.c - vax-specific -
-   Copyright (C) 1987, 91, 92, 93, 94, 95, 98, 1999
+   Copyright 1987, 1991, 1992, 1993, 1994, 1995, 1998, 1999
    Free Software Foundation, Inc.
 
@@ -1950,5 +1950,5 @@
 /* vax_reg_parse.c - convert a VAX register name to a number */
 
-/* Copyright (C) 1987 Free Software Foundation, Inc. A part of GNU. */
+/* Copyright 1987 Free Software Foundation, Inc. A part of GNU. */
 
 /*
--- ../binutils-000817/gas/config/tc-vax.h	Mon May  3 17:28:43 1999
+++ gas/config/tc-vax.h	Sun Aug 20 23:17:46 2000
@@ -1,4 +1,5 @@
 /* tc-vax.h -- Header file for tc-vax.c.
-   Copyright (C) 1987, 91, 92, 93, 95, 96, 1997 Free Software Foundation, Inc.
+   Copyright 1987, 1991, 1992, 1993, 1995, 1996, 1997
+   Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/tc-w65.c	Tue Jul 18 06:59:47 2000
+++ gas/config/tc-w65.c	Sun Aug 20 23:17:46 2000
@@ -1,4 +1,4 @@
 /* tc-w65.c -- Assemble code for the W65816
-   Copyright (C) 1995, 1998, 2000 Free Software Foundation.
+   Copyright 1995, 1998, 2000 Free Software Foundation.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/tc-w65.h	Mon May  3 17:28:43 1999
+++ gas/config/tc-w65.h	Sun Aug 20 23:17:46 2000
@@ -1,4 +1,4 @@
 /* This file is tc-w65.h
-   Copyright (C) 1995, 1997, 1998 Free Software Foundation, Inc.
+   Copyright 1995, 1997, 1998 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/tc-z8k.c	Thu Jul 27 14:05:05 2000
+++ gas/config/tc-z8k.c	Sun Aug 20 23:17:46 2000
@@ -1,4 +1,4 @@
 /* tc-z8k.c -- Assemble code for the Zilog Z800n
-   Copyright (C) 1992, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation.
 
--- ../binutils-000817/gas/config/tc-z8k.h	Mon May  3 17:28:43 1999
+++ gas/config/tc-z8k.h	Sun Aug 20 23:17:46 2000
@@ -1,4 +1,5 @@
 /* This file is tc-z8k.h
-   Copyright (C) 1987-1992, 93, 95, 97, 1998 Free Software Foundation, Inc.
+   Copyright 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1995, 1997, 1998
+   Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/te-386bsd.h	Mon May 15 04:53:18 2000
+++ gas/config/te-386bsd.h	Sun Aug 20 23:17:46 2000
@@ -1,4 +1,4 @@
 /* te-386bsd.h -- 386BSD target environment declarations.
-   Copyright (C) 1987, 1990, 1991, 1992 Free Software Foundation, Inc.
+   Copyright 1987, 1990, 1991, 1992 Free Software Foundation, Inc.
    
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/te-freebsd.h	Sun May 14 19:37:07 2000
+++ gas/config/te-freebsd.h	Sun Aug 20 23:17:46 2000
@@ -1,4 +1,4 @@
 /* te-freebsd.h -- FreeBSD target environment declarations.
-   Copyright (C) 2000 Free Software Foundation, Inc.
+   Copyright 2000 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/te-hp300.h	Mon May 15 04:53:18 2000
+++ gas/config/te-hp300.h	Sun Aug 20 23:17:46 2000
@@ -1,4 +1,4 @@
 /* te-hp300.h -- hpux 9000/300 target environment declarations.
-   Copyright (C) 1987, 1990, 1991, 1992 Free Software Foundation, Inc.
+   Copyright 1987, 1990, 1991, 1992 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/te-ic960.h	Mon May 15 04:53:18 2000
+++ gas/config/te-ic960.h	Sun Aug 20 23:17:46 2000
@@ -1,4 +1,5 @@
 /* This file is te-ic960.h
-   Copyright (C) 1987-1992, 94, 95, 1997 Free Software Foundation, Inc.
+   Copyright 1987, 1988, 1989, 1990, 1991, 1992, 1994, 1995, 1997
+   Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/te-nbsd.h	Mon May  3 17:28:44 1999
+++ gas/config/te-nbsd.h	Sun Aug 20 23:17:46 2000
@@ -1,4 +1,5 @@
 /* te-nbsd.h -- NetBSD target environment declarations.
-   Copyright (C) 1987, 90, 91, 92, 94, 95, 1998 Free Software Foundation, Inc.
+   Copyright 1987, 1990, 1991, 1992, 1994, 1995, 1998
+   Free Software Foundation, Inc.
    
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/te-ppcnw.h	Mon May 15 04:53:18 2000
+++ gas/config/te-ppcnw.h	Sun Aug 20 23:17:46 2000
@@ -1,4 +1,4 @@
 /* te-ppcnw.h -- Power PC running Netware environment declarations.
-   Copyright (C) 1994 Free Software Foundation, Inc.
+   Copyright 1994 Free Software Foundation, Inc.
    
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/te-sparcaout.h	Mon May 15 04:53:18 2000
+++ gas/config/te-sparcaout.h	Sun Aug 20 23:17:46 2000
@@ -1,4 +1,4 @@
 /* te-sparcaout.h -- embedded sparc-aout target environment declarations.
-   Copyright (C) 1996 Free Software Foundation, Inc.
+   Copyright 1996 Free Software Foundation, Inc.
    
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/te-sun3.h	Mon May 15 04:53:18 2000
+++ gas/config/te-sun3.h	Sun Aug 20 23:17:46 2000
@@ -1,4 +1,4 @@
 /* te-sun3.h -- Sun-3 target environment declarations.
-   Copyright (C) 1987, 1990, 1991, 1992 Free Software Foundation, Inc.
+   Copyright 1987, 1990, 1991, 1992 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/te-tmips.h	Sun Jul  2 11:18:49 2000
+++ gas/config/te-tmips.h	Sun Aug 20 23:17:46 2000
@@ -1,4 +1,4 @@
 /* Traditional MIPS targets
-   Copyright (C) 2000 Free Software Foundation, Inc.
+   Copyright 2000 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/config/vax-inst.h	Mon May  3 17:28:44 1999
+++ gas/config/vax-inst.h	Sun Aug 20 23:17:46 2000
@@ -1,4 +1,4 @@
 /* vax-inst.h - GNU - Part of vax.c
-   Copyright (C) 1987, 1992, 1995 Free Software Foundation, Inc.
+   Copyright 1987, 1992, 1995 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/debug.c	Mon May  3 17:28:40 1999
+++ gas/debug.c	Sun Aug 20 23:17:41 2000
@@ -1,4 +1,4 @@
 /* This file is debug.c
-   Copyright (C) 1987, 1988, 1989, 1990, 1991, 1992 Free Software Foundation, Inc.
+   Copyright 1987, 1988, 1989, 1990, 1991, 1992 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/depend.c	Sun Jul  9 06:34:43 2000
+++ gas/depend.c	Sun Aug 20 23:17:41 2000
@@ -1,4 +1,4 @@
 /* depend.c - Handle dependency tracking.
-   Copyright (C) 1997, 1998 Free Software Foundation, Inc.
+   Copyright 1997, 1998 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/doc/as.1	Wed Apr 26 08:55:20 2000
+++ gas/doc/as.1	Sun Aug 20 23:17:46 2000
@@ -1,3 +1,3 @@
-.\" Copyright (c) 1991, 1992, 1996, 1997, 1998 Free Software Foundation
+.\" Copyright 1991, 1992, 1996, 1997, 1998 Free Software Foundation
 .\" See section COPYING for conditions for redistribution
 .TH as 1 "29 March 1996" "cygnus support" "GNU Development Tools"
@@ -291,5 +291,5 @@
 
 .SH COPYING
-Copyright (c) 1991, 1992 Free Software Foundation, Inc.
+Copyright 1991, 1992 Free Software Foundation, Inc.
 .PP
 Permission is granted to make and distribute verbatim copies of
--- ../binutils-000817/gas/doc/as.texinfo	Sun Aug  6 04:41:46 2000
+++ gas/doc/as.texinfo	Sun Aug 20 23:17:46 2000
@@ -1,4 +1,4 @@
 \input texinfo @c                               -*-Texinfo-*-
-@c  Copyright (c) 1991, 92, 93, 94, 95, 96, 97, 98, 2000
+@c  Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2000
 @c  Free Software Foundation, Inc.
 @c UPDATE!!  On future updates--
@@ -88,5 +88,6 @@
 This file documents the GNU Assembler "@value{AS}".
 
-Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98, 99, 2000 Free Software Foundation, Inc.
+Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
+Free Software Foundation, Inc.
 
 Permission is granted to make and distribute verbatim copies of
@@ -143,5 +144,6 @@
 
 @vskip 0pt plus 1filll
-Copyright @copyright{} 1991, 92, 93, 94, 95, 96, 97, 98, 99, 2000 Free Software Foundation, Inc.
+Copyright @copyright{} 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
+2000 Free Software Foundation, Inc.
 
 Permission is granted to make and distribute verbatim copies of
--- ../binutils-000817/gas/doc/c-a29k.texi	Mon May  3 17:28:44 1999
+++ gas/doc/c-a29k.texi	Sun Aug 20 23:17:46 2000
@@ -1,3 +1,3 @@
-@c Copyright (C) 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
+@c Copyright 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
 @c This is part of the GAS manual.
 @c For copying conditions, see the file as.texinfo.
--- ../binutils-000817/gas/doc/c-arm.texi	Mon Aug 14 19:02:45 2000
+++ gas/doc/c-arm.texi	Sun Aug 20 23:17:46 2000
@@ -1,3 +1,3 @@
-@c Copyright (C) 1996, 1998, 1999, 2000 Free Software Foundation, Inc.
+@c Copyright 1996, 1998, 1999, 2000 Free Software Foundation, Inc.
 @c This is part of the GAS manual.
 @c For copying conditions, see the file as.texinfo.
--- ../binutils-000817/gas/doc/c-d10v.texi	Mon May  3 17:28:44 1999
+++ gas/doc/c-d10v.texi	Sun Aug 20 23:17:46 2000
@@ -1,3 +1,3 @@
-@c Copyright (C) 1996 Free Software Foundation, Inc.
+@c Copyright 1996 Free Software Foundation, Inc.
 @c This is part of the GAS manual.
 @c For copying conditions, see the file as.texinfo.
--- ../binutils-000817/gas/doc/c-d30v.texi	Mon May  3 17:28:44 1999
+++ gas/doc/c-d30v.texi	Sun Aug 20 23:17:46 2000
@@ -1,3 +1,3 @@
-@c Copyright (C) 1997 Free Software Foundation, Inc.
+@c Copyright 1997 Free Software Foundation, Inc.
 @c This is part of the GAS manual.
 @c For copying conditions, see the file as.texinfo.
--- ../binutils-000817/gas/doc/c-h8300.texi	Mon May  3 17:28:45 1999
+++ gas/doc/c-h8300.texi	Sun Aug 20 23:17:46 2000
@@ -1,3 +1,3 @@
-@c Copyright (C) 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
+@c Copyright 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
 @c This is part of the GAS manual.
 @c For copying conditions, see the file as.texinfo.
--- ../binutils-000817/gas/doc/c-h8500.texi	Mon May  3 17:28:45 1999
+++ gas/doc/c-h8500.texi	Sun Aug 20 23:17:46 2000
@@ -1,3 +1,3 @@
-@c Copyright (C) 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
+@c Copyright 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
 @c This is part of the GAS manual.
 @c For copying conditions, see the file as.texinfo.
--- ../binutils-000817/gas/doc/c-hppa.texi	Mon May  3 17:28:45 1999
+++ gas/doc/c-hppa.texi	Sun Aug 20 23:17:46 2000
@@ -1,3 +1,3 @@
-@c Copyright (C) 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
+@c Copyright 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
 @c This is part of the GAS manual.
 @c For copying conditions, see the file as.texinfo.
--- ../binutils-000817/gas/doc/c-i370.texi	Thu Feb 24 00:52:21 2000
+++ gas/doc/c-i370.texi	Sun Aug 20 23:17:46 2000
@@ -1,3 +1,3 @@
-@c Copyright (C) 2000 Free Software Foundation, Inc.
+@c Copyright 2000 Free Software Foundation, Inc.
 @c This is part of the GAS manual.
 @c For copying conditions, see the file as.texinfo.
--- ../binutils-000817/gas/doc/c-i386.texi	Sat May 13 19:26:23 2000
+++ gas/doc/c-i386.texi	Sun Aug 20 23:17:47 2000
@@ -1,3 +1,4 @@
-@c Copyright (C) 1991, 92, 93, 94, 95, 97, 1998 Free Software Foundation, Inc.
+@c Copyright 1991, 1992, 1993, 1994, 1995, 1997, 1998
+@c Free Software Foundation, Inc.
 @c This is part of the GAS manual.
 @c For copying conditions, see the file as.texinfo.
--- ../binutils-000817/gas/doc/c-i860.texi	Sun Aug 13 02:05:46 2000
+++ gas/doc/c-i860.texi	Sun Aug 20 23:17:47 2000
@@ -1,3 +1,3 @@
-@c Copyright (C) 2000 Free Software Foundation, Inc.
+@c Copyright 2000 Free Software Foundation, Inc.
 @c This is part of the GAS manual.
 @c For copying conditions, see the file as.texinfo.
--- ../binutils-000817/gas/doc/c-i960.texi	Mon May  3 17:28:45 1999
+++ gas/doc/c-i960.texi	Sun Aug 20 23:17:47 2000
@@ -1,3 +1,3 @@
-@c Copyright (C) 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
+@c Copyright 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
 @c This is part of the GAS manual.
 @c For copying conditions, see the file as.texinfo.
--- ../binutils-000817/gas/doc/c-m32r.texi	Tue Mar  7 11:06:52 2000
+++ gas/doc/c-m32r.texi	Sun Aug 20 23:17:47 2000
@@ -1,3 +1,4 @@
-@c Copyright (C) 1991, 92-98, 1999 Free Software Foundation, Inc.
+@c Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
+@c Free Software Foundation, Inc.
 @c This is part of the GAS manual.
 @c For copying conditions, see the file as.texinfo.
--- ../binutils-000817/gas/doc/c-m68hc11.texi	Mon Jun 19 11:22:40 2000
+++ gas/doc/c-m68hc11.texi	Sun Aug 20 23:17:47 2000
@@ -1,3 +1,4 @@
-@c Copyright (C) 1991, 92, 93, 94, 95, 96, 1997 Free Software Foundation, Inc.
+@c Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997
+@c Free Software Foundation, Inc.
 @c This is part of the GAS manual.
 @c For copying conditions, see the file as.texinfo.
--- ../binutils-000817/gas/doc/c-m68k.texi	Wed Aug  2 02:57:01 2000
+++ gas/doc/c-m68k.texi	Sun Aug 20 23:17:47 2000
@@ -1,3 +1,4 @@
-@c Copyright (C) 1991, 92, 93, 94, 95, 96, 1997 Free Software Foundation, Inc.
+@c Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997
+@c Free Software Foundation, Inc.
 @c This is part of the GAS manual.
 @c For copying conditions, see the file as.texinfo.
--- ../binutils-000817/gas/doc/c-mips.texi	Sun Jul 16 01:09:13 2000
+++ gas/doc/c-mips.texi	Sun Aug 20 23:17:47 2000
@@ -1,3 +1,3 @@
-@c Copyright (C) 1991, 92, 93, 94, 95, 1997 Free Software Foundation, Inc.
+@c Copyright 1991, 1992, 1993, 1994, 1995, 1997 Free Software Foundation, Inc.
 @c This is part of the GAS manual.
 @c For copying conditions, see the file as.texinfo.
--- ../binutils-000817/gas/doc/c-ns32k.texi	Mon May  3 17:28:45 1999
+++ gas/doc/c-ns32k.texi	Sun Aug 20 23:17:47 2000
@@ -1,3 +1,3 @@
-@c  Copyright (c) 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
+@c  Copyright 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
 @c This is part of the GAS manual.
 @c For copying conditions, see the file as.texinfo.
--- ../binutils-000817/gas/doc/c-pj.texi	Sun Sep  5 03:29:22 1999
+++ gas/doc/c-pj.texi	Sun Aug 20 23:17:47 2000
@@ -1,3 +1,3 @@
-@c Copyright (C) 1999 Free Software Foundation, Inc.
+@c Copyright 1999 Free Software Foundation, Inc.
 @c This is part of the GAS manual.
 @c For copying conditions, see the file as.texinfo.
--- ../binutils-000817/gas/doc/c-sh.texi	Mon May  3 17:28:45 1999
+++ gas/doc/c-sh.texi	Sun Aug 20 23:17:47 2000
@@ -1,3 +1,3 @@
-@c Copyright (C) 1991, 92, 93, 94, 95, 1997 Free Software Foundation, Inc.
+@c Copyright 1991, 1992, 1993, 1994, 1995, 1997 Free Software Foundation, Inc.
 @c This is part of the GAS manual.
 @c For copying conditions, see the file as.texinfo.
--- ../binutils-000817/gas/doc/c-sparc.texi	Sat Jul 31 07:39:53 1999
+++ gas/doc/c-sparc.texi	Sun Aug 20 23:17:47 2000
@@ -1,3 +1,3 @@
-@c Copyright (C) 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
+@c Copyright 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
 @c This is part of the GAS manual.
 @c For copying conditions, see the file as.texinfo.
--- ../binutils-000817/gas/doc/c-tic54x.texi	Tue Jun 20 23:52:29 2000
+++ gas/doc/c-tic54x.texi	Sun Aug 20 23:17:47 2000
@@ -1,3 +1,3 @@
-@c Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+@c Copyright 1999, 2000 Free Software Foundation, Inc.
 @c This is part of the GAS manual.
 @c For copying conditions, see the file as.texinfo.
--- ../binutils-000817/gas/doc/c-v850.texi	Mon May  3 17:28:45 1999
+++ gas/doc/c-v850.texi	Sun Aug 20 23:17:47 2000
@@ -1,3 +1,3 @@
-@c Copyright (C) 1997, 1998 Free Software Foundation, Inc.
+@c Copyright 1997, 1998 Free Software Foundation, Inc.
 @c This is part of the GAS manual.
 @c For copying conditions, see the file as.texinfo.
--- ../binutils-000817/gas/doc/c-vax.texi	Mon May  3 17:28:45 1999
+++ gas/doc/c-vax.texi	Sun Aug 20 23:17:47 2000
@@ -1,3 +1,4 @@
-@c Copyright (C) 1991, 92, 93, 94, 95, 96, 1998 Free Software Foundation, Inc.
+@c Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1998
+@c Free Software Foundation, Inc.
 @c This is part of the GAS manual.
 @c For copying conditions, see the file as.texinfo.
--- ../binutils-000817/gas/doc/c-z8k.texi	Mon May  3 17:28:45 1999
+++ gas/doc/c-z8k.texi	Sun Aug 20 23:17:47 2000
@@ -1,3 +1,3 @@
-@c Copyright (C) 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
+@c Copyright 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
 @c This is part of the GAS manual.
 @c For copying conditions, see the file as.texinfo.
--- ../binutils-000817/gas/doc/gasp.texi	Mon May  3 17:28:45 1999
+++ gas/doc/gasp.texi	Sun Aug 20 23:17:47 2000
@@ -4,5 +4,5 @@
 @c This file documents the assembly preprocessor "GASP"
 @c
-@c Copyright (c) 1994 Free Software Foundation, Inc.
+@c Copyright 1994 Free Software Foundation, Inc.
 @c
 @c This text may be freely distributed under the terms of the GNU
--- ../binutils-000817/gas/dwarf2dbg.c	Tue Feb 22 18:21:23 2000
+++ gas/dwarf2dbg.c	Sun Aug 20 23:17:41 2000
@@ -1,4 +1,4 @@
 /* dwarf2dbg.c - DWARF2 debug support
-   Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1999, 2000 Free Software Foundation, Inc.
    Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
 
--- ../binutils-000817/gas/dwarf2dbg.h	Sat Jun 12 18:48:00 1999
+++ gas/dwarf2dbg.h	Sun Aug 20 23:17:41 2000
@@ -1,4 +1,4 @@
 /* dwarf2dbg.h - DWARF2 debug support
-   Copyright (C) 1999 Free Software Foundation, Inc.
+   Copyright 1999 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/ecoff.c	Sun Jun  6 04:19:04 1999
+++ gas/ecoff.c	Sun Aug 20 23:17:41 2000
@@ -1,4 +1,5 @@
 /* ECOFF debugging support.
-   Copyright (C) 1993, 94, 95, 96, 97, 98, 1999 Free Software Foundation, Inc.
+   Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999
+   Free Software Foundation, Inc.
    Contributed by Cygnus Support.
    This file was put together by Ian Lance Taylor <ian@cygnus.com>.  A
--- ../binutils-000817/gas/ecoff.h	Thu Jun  3 10:28:58 1999
+++ gas/ecoff.h	Sun Aug 20 23:17:41 2000
@@ -1,4 +1,5 @@
 /* ecoff.h -- header file for ECOFF debugging support
-   Copyright (C) 1993, 94, 95, 96, 97, 98, 1999 Free Software Foundation, Inc.
+   Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999
+   Free Software Foundation, Inc.
    Contributed by Cygnus Support.
    Put together by Ian Lance Taylor <ian@cygnus.com>.
--- ../binutils-000817/gas/ehopt.c	Mon May  3 17:28:40 1999
+++ gas/ehopt.c	Sun Aug 20 23:17:41 2000
@@ -1,4 +1,4 @@
 /* ehopt.c--optimize gcc exception frame information.
-   Copyright (C) 1998 Free Software Foundation, Inc.
+   Copyright 1998 Free Software Foundation, Inc.
    Written by Ian Lance Taylor <ian@cygnus.com>.
 
--- ../binutils-000817/gas/expr.c	Sat Aug 12 03:50:25 2000
+++ gas/expr.c	Sun Aug 20 23:19:58 2000
@@ -1,5 +1,5 @@
 /* expr.c -operands, expressions-
-   Copyright (C) 1987, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000
-   Free Software Foundation, Inc.
+   Copyright 1987, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
+   2000 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/expr.h	Sat Nov  6 08:50:54 1999
+++ gas/expr.h	Sun Aug 20 23:17:41 2000
@@ -1,4 +1,5 @@
 /* expr.h -> header file for expr.c
-   Copyright (C) 1987, 92-98, 1999 Free Software Foundation, Inc.
+   Copyright 1987, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
+   Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/flonum-copy.c	Mon May  3 17:28:40 1999
+++ gas/flonum-copy.c	Sun Aug 20 23:17:41 2000
@@ -1,4 +1,4 @@
 /* flonum_copy.c - copy a flonum
-   Copyright (C) 1987, 1990, 1991, 1992 Free Software Foundation, Inc.
+   Copyright 1987, 1990, 1991, 1992 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/flonum-konst.c	Tue Jul 11 04:59:26 2000
+++ gas/flonum-konst.c	Sun Aug 20 23:17:41 2000
@@ -1,4 +1,4 @@
 /* flonum_const.c - Useful Flonum constants
-   Copyright (C) 1987, 90, 91, 92, 93, 94, 95, 1996
+   Copyright 1987, 1990, 1991, 1992, 1993, 1994, 1995, 1996
    Free Software Foundation, Inc.
 
--- ../binutils-000817/gas/flonum-mult.c	Sun Jul  9 06:34:43 2000
+++ gas/flonum-mult.c	Sun Aug 20 23:17:41 2000
@@ -1,4 +1,4 @@
 /* flonum_mult.c - multiply two flonums
-   Copyright (C) 1987, 1990, 1991, 1992 Free Software Foundation, Inc.
+   Copyright 1987, 1990, 1991, 1992 Free Software Foundation, Inc.
 
    This file is part of Gas, the GNU Assembler.
--- ../binutils-000817/gas/flonum.h	Mon May  3 17:28:40 1999
+++ gas/flonum.h	Sun Aug 20 23:17:41 2000
@@ -1,5 +1,6 @@
 /* flonum.h - Floating point package
 
-   Copyright (C) 1987, 90, 91, 92, 94, 95, 1996 Free Software Foundation, Inc.
+   Copyright 1987, 1990, 1991, 1992, 1994, 1995, 1996
+   Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/frags.c	Sat Jul 22 14:23:48 2000
+++ gas/frags.c	Sun Aug 20 23:20:01 2000
@@ -1,5 +1,5 @@
 /* frags.c - manage frags -
-   Copyright (C) 1987, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000
-   Free Software Foundation, Inc.
+   Copyright 1987, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
+   2000 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/frags.h	Tue May 23 15:07:47 2000
+++ gas/frags.h	Sun Aug 20 23:17:41 2000
@@ -1,4 +1,4 @@
 /* frags.h - Header file for the frag concept.
-   Copyright (C) 1987, 92, 93, 94, 95, 97, 98, 99, 2000
+   Copyright 1987, 1992, 1993, 1994, 1995, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/gas/gasp.c	Wed Aug  9 08:18:42 2000
+++ gas/gasp.c	Sun Aug 20 23:17:41 2000
@@ -1,4 +1,4 @@
 /* gasp.c - Gnu assembler preprocessor main program.
-   Copyright (C) 1994, 95, 96, 97, 98, 99, 2000
+   Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/gas/hash.c	Wed Aug  9 07:42:59 2000
+++ gas/hash.c	Sun Aug 20 23:17:41 2000
@@ -1,4 +1,4 @@
 /* hash.c -- gas hash table code
-   Copyright (C) 1987, 90, 91, 92, 93, 94, 95, 96, 98, 99, 2000
+   Copyright 1987, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/gas/hash.h	Thu Jun  3 09:22:49 1999
+++ gas/hash.h	Sun Aug 20 23:17:41 2000
@@ -1,4 +1,4 @@
 /* hash.h -- header file for gas hash table routines
-   Copyright (C) 1987, 92, 93, 95, 1999 Free Software Foundation, Inc.
+   Copyright 1987, 1992, 1993, 1995, 1999 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/input-file.c	Thu Jun  3 10:24:13 1999
+++ gas/input-file.c	Sun Aug 20 23:17:41 2000
@@ -1,4 +1,4 @@
 /* input_file.c - Deal with Input Files -
-   Copyright (C) 1987, 90, 91, 92, 93, 94, 95, 98, 1999
+   Copyright 1987, 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999
    Free Software Foundation, Inc.
 
--- ../binutils-000817/gas/input-file.h	Mon May  3 17:28:41 1999
+++ gas/input-file.h	Sun Aug 20 23:17:41 2000
@@ -1,4 +1,4 @@
 /* input_file.h header for input-file.c
-   Copyright (C) 1987, 1992 Free Software Foundation, Inc.
+   Copyright 1987, 1992 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/input-scrub.c	Tue May 30 06:25:14 2000
+++ gas/input-scrub.c	Sun Aug 20 23:17:41 2000
@@ -1,4 +1,4 @@
 /* input_scrub.c - Break up input buffers into whole numbers of lines.
-   Copyright (C) 1987, 90, 91, 92, 93, 94, 95, 96, 1997
+   Copyright 1987, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997
    Free Software Foundation, Inc.
 
--- ../binutils-000817/gas/itbl-lex.c	Thu Aug 17 22:40:07 2000
+++ gas/itbl-lex.c	Sun Aug 20 23:18:01 2000
@@ -405,5 +405,5 @@
 #define INITIAL 0
 /* itbl-lex.l
-   Copyright (C) 1997  Free Software Foundation, Inc.
+   Copyright 1997 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/itbl-lex.l	Mon May  3 17:28:41 1999
+++ gas/itbl-lex.l	Sun Aug 20 23:17:41 2000
@@ -1,4 +1,4 @@
 /* itbl-lex.l
-   Copyright (C) 1997  Free Software Foundation, Inc.
+   Copyright 1997 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/itbl-ops.c	Fri Jun 11 07:35:32 1999
+++ gas/itbl-ops.c	Sun Aug 20 23:17:41 2000
@@ -1,4 +1,4 @@
 /* itbl-ops.c
-   Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc.
+   Copyright 1997, 1998, 1999 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/itbl-ops.h	Fri Jun 11 06:35:47 1999
+++ gas/itbl-ops.h	Sun Aug 20 23:17:41 2000
@@ -1,4 +1,4 @@
 /* itbl-ops.h
-   Copyright (C) 1997, 1999 Free Software Foundation, Inc.
+   Copyright 1997, 1999 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/itbl-parse.c	Thu Aug 17 22:40:07 2000
+++ gas/itbl-parse.c	Sun Aug 20 23:18:01 2000
@@ -435,5 +435,5 @@
 
 /* Skeleton output parser for bison,
-   Copyright (C) 1984, 1989, 1990 Free Software Foundation, Inc.
+   Copyright 1984, 1989, 1990 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/gas/itbl-parse.y	Mon May  3 17:28:41 1999
+++ gas/itbl-parse.y	Sun Aug 20 23:17:41 2000
@@ -1,4 +1,4 @@
 /* itbl-parse.y
-   Copyright (C) 1997  Free Software Foundation, Inc.
+   Copyright 1997 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/listing.c	Tue Mar 28 09:47:08 2000
+++ gas/listing.c	Sun Aug 20 23:17:41 2000
@@ -1,4 +1,4 @@
 /* listing.c - mainting assembly listings
-   Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98, 1999
+   Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
    Free Software Foundation, Inc.
 
--- ../binutils-000817/gas/listing.h	Mon May  3 17:28:41 1999
+++ gas/listing.h	Sun Aug 20 23:17:41 2000
@@ -1,4 +1,4 @@
 /* This file is listing.h
-   Copyright (C) 1987, 88, 89, 90, 91, 92, 93, 94, 95, 1997
+   Copyright 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1997
    Free Software Foundation, Inc.
 
--- ../binutils-000817/gas/literal.c	Mon May  3 17:28:41 1999
+++ gas/literal.c	Sun Aug 20 23:17:41 2000
@@ -1,4 +1,4 @@
 /* as.c - GAS literal pool management.
-   Copyright (C) 1994 Free Software Foundation, Inc.
+   Copyright 1994 Free Software Foundation, Inc.
    Written by Ken Raeburn (raeburn@cygnus.com).
 
--- ../binutils-000817/gas/m68k-parse.c	Thu Aug 17 22:40:07 2000
+++ gas/m68k-parse.c	Sun Aug 20 23:18:01 2000
@@ -351,5 +351,5 @@
 
 /* Skeleton output parser for bison,
-   Copyright (C) 1984, 1989, 1990 Free Software Foundation, Inc.
+   Copyright 1984, 1989, 1990 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/gas/macro.c	Mon Jun 26 03:59:21 2000
+++ gas/macro.c	Sun Aug 20 23:17:41 2000
@@ -1,4 +1,4 @@
 /* macro.c - macro support for gas and gasp
-   Copyright (C) 1994, 95, 96, 97, 98, 1999 Free Software Foundation, Inc.
+   Copyright 1994, 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
 
    Written by Steve and Judy Chamberlain of Cygnus Support,
--- ../binutils-000817/gas/macro.h	Mon Mar 27 00:47:33 2000
+++ gas/macro.h	Sun Aug 20 23:17:42 2000
@@ -1,4 +1,4 @@
 /* macro.h - header file for macro support for gas and gasp
-   Copyright (C) 1994, 95, 96, 97, 1998 Free Software Foundation, Inc.
+   Copyright 1994, 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
 
    Written by Steve and Judy Chamberlain of Cygnus Support,
--- ../binutils-000817/gas/messages.c	Mon May  3 17:28:41 1999
+++ gas/messages.c	Sun Aug 20 23:17:42 2000
@@ -1,4 +1,4 @@
 /* messages.c - error reporter -
-   Copyright (C) 1987, 91, 92, 93, 94, 95, 96, 97, 1998
+   Copyright 1987, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998
    Free Software Foundation, Inc.
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/obj.h	Tue May 23 07:19:43 2000
+++ gas/obj.h	Sun Aug 20 23:17:42 2000
@@ -2,5 +2,5 @@
    format backends.
 
-   Copyright (C) 1987, 90, 91, 92, 93, 95, 96, 97, 99, 2000
+   Copyright 1987, 1990, 1991, 1992, 1993, 1995, 1996, 1997, 1999, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/gas/output-file.c	Wed Aug  4 01:29:03 1999
+++ gas/output-file.c	Sun Aug 20 23:31:29 2000
@@ -1,4 +1,4 @@
 /* output-file.c -  Deal with the output file
-   Copyright (C) 1987, 90, 91, 93, 92, 94, 95, 96, 1998
+   Copyright 1987, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1998
    Free Software Foundation, Inc.
 
--- ../binutils-000817/gas/output-file.h	Mon May  3 17:28:41 1999
+++ gas/output-file.h	Sun Aug 20 23:17:42 2000
@@ -1,5 +1,5 @@
 /* This file is output-file.h
 
-   Copyright (C) 1987-1992 Free Software Foundation, Inc.
+   Copyright 1987, 1988, 1989, 1990, 1991, 1992 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/read.c	Fri Jul 28 15:05:19 2000
+++ gas/read.c	Sun Aug 20 23:51:19 2000
@@ -1,5 +1,5 @@
 /* read.c - read a source file -
-   Copyright (C) 1986, 87, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99,
-   2000 Free Software Foundation, Inc.
+   Copyright 1986, 1987, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
+   1999, 2000 Free Software Foundation, Inc.
 
 This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/read.h	Tue Jul 11 01:15:01 2000
+++ gas/read.h	Sun Aug 20 23:17:42 2000
@@ -1,4 +1,4 @@
 /* read.h - of read.c
-   Copyright (C) 1986, 90, 92, 93, 94, 95, 96, 1997
+   Copyright 1986, 1990, 1992, 1993, 1994, 1995, 1996, 1997
    Free Software Foundation, Inc.
 
--- ../binutils-000817/gas/sb.c	Thu Jul 20 03:47:08 2000
+++ gas/sb.c	Sun Aug 20 23:17:41 2000
@@ -1,4 +1,4 @@
 /* sb.c - string buffer manipulation routines
-   Copyright (C) 1994, 1995 Free Software Foundation, Inc.
+   Copyright 1994, 1995 Free Software Foundation, Inc.
 
    Written by Steve and Judy Chamberlain of Cygnus Support,
--- ../binutils-000817/gas/sb.h	Mon Mar 27 00:47:33 2000
+++ gas/sb.h	Sun Aug 20 23:17:42 2000
@@ -1,4 +1,4 @@
 /* sb.h - header file for string buffer manipulation routines
-   Copyright (C) 1994, 1995 Free Software Foundation, Inc.
+   Copyright 1994, 1995 Free Software Foundation, Inc.
 
    Written by Steve and Judy Chamberlain of Cygnus Support,
--- ../binutils-000817/gas/stabs.c	Mon May 22 04:26:10 2000
+++ gas/stabs.c	Sun Aug 20 23:17:42 2000
@@ -1,4 +1,4 @@
 /* Generic stabs parsing for gas.
-   Copyright (C) 1989, 90, 91, 93, 94, 95, 96, 97, 98, 1999
+   Copyright 1989, 1990, 1991, 1993, 1994, 1995, 1996, 1997, 1998, 1999
    Free Software Foundation, Inc.
 
--- ../binutils-000817/gas/struc-symbol.h	Sat Jun 12 07:07:44 1999
+++ gas/struc-symbol.h	Sun Aug 20 23:17:42 2000
@@ -1,4 +1,5 @@
 /* struct_symbol.h - Internal symbol structure
-   Copyright (C) 1987, 92, 93, 94, 95, 98, 1999 Free Software Foundation, Inc.
+   Copyright 1987, 1992, 1993, 1994, 1995, 1998, 1999
+   Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/subsegs.c	Sun Jun 27 18:29:27 1999
+++ gas/subsegs.c	Sun Aug 20 23:17:42 2000
@@ -1,4 +1,4 @@
 /* subsegs.c - subsegments -
-   Copyright (C) 1987, 90, 91, 92, 93, 94, 95, 96, 97, 98, 1999
+   Copyright 1987, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
    Free Software Foundation, Inc.
 
--- ../binutils-000817/gas/subsegs.h	Mon May  3 17:28:41 1999
+++ gas/subsegs.h	Sun Aug 20 23:17:42 2000
@@ -1,4 +1,5 @@
 /* subsegs.h -> subsegs.c
-   Copyright (C) 1987, 92, 93, 94, 95, 96, 1998 Free Software Foundation, Inc.
+   Copyright 1987, 1992, 1993, 1994, 1995, 1996, 1998
+   Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/symbols.c	Fri Aug 11 05:00:08 2000
+++ gas/symbols.c	Sun Aug 20 23:20:14 2000
@@ -1,5 +1,5 @@
 /* symbols.c -symbol table-
-   Copyright (C) 1987, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000
-   Free Software Foundation, Inc.
+   Copyright 1987, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
+   2000 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/symbols.h	Sun Jun  6 04:19:09 1999
+++ gas/symbols.h	Sun Aug 20 23:17:42 2000
@@ -1,4 +1,4 @@
 /* symbols.h -
-   Copyright (C) 1987, 90, 92, 93, 94, 95, 97, 1999
+   Copyright 1987, 1990, 1992, 1993, 1994, 1995, 1997, 1999
    Free Software Foundation, Inc.
 
--- ../binutils-000817/gas/tc.h	Mon May  3 17:28:41 1999
+++ gas/tc.h	Sun Aug 20 23:17:42 2000
@@ -1,5 +1,5 @@
 /* tc.h - target cpu dependent
 
-   Copyright (C) 1987, 1990, 1991, 1992 Free Software Foundation, Inc.
+   Copyright 1987, 1990, 1991, 1992 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/write.c	Fri Jul 21 06:07:09 2000
+++ gas/write.c	Sun Aug 20 23:20:19 2000
@@ -1,5 +1,5 @@
 /* write.c - emit .o file
-   Copyright (C) 1986, 87, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000
-   Free Software Foundation, Inc.
+   Copyright 1986, 1987, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
+   1999, 2000 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/write.h	Mon May  3 17:28:41 1999
+++ gas/write.h	Sun Aug 20 23:17:42 2000
@@ -1,4 +1,5 @@
 /* write.h
-   Copyright (C) 1987, 92, 93, 94, 95, 96, 1997 Free Software Foundation, Inc.
+   Copyright 1987, 1992, 1993, 1994, 1995, 1996, 1997
+   Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.

# gas/testsuite
2000-08-25  Rodney Brown  <RodneyBrown@mynd.com>

	* gas/all/itbl-test.c: Standardize FSF Copyright statements.
	* gas/cris/cris.exp: Likewise.
	* gas/hppa/basic/basic.exp: Likewise.
	* gas/hppa/parse/parse.exp: Likewise.
	* gas/hppa/reloc/reloc.exp: Likewise.
	* gas/hppa/unsorted/unsorted.exp: Likewise.
	* gas/mn10200/basic.exp: Likewise.
	* gas/mn10300/basic.exp: Likewise.
	* gas/sh/basic.exp: Likewise.
	* gas/v850/basic.exp: Likewise.
	* lib/gas-defs.exp: Likewise.

--- ../binutils-000817/gas/testsuite/gas/all/itbl-test.c	Fri Jun 11 07:14:57 1999
+++ gas/testsuite/gas/all/itbl-test.c	Sun Aug 20 23:17:47 2000
@@ -3,5 +3,5 @@
 /* itbl-test.c
 
-   Copyright (C) 1997  Free Software Foundation, Inc.
+   Copyright 1997 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/gas/testsuite/gas/cris/cris.exp	Fri Jul 21 10:48:55 2000
+++ gas/testsuite/gas/cris/cris.exp	Sun Aug 20 23:17:48 2000
@@ -1,3 +1,3 @@
-# Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+# Copyright 1999, 2000 Free Software Foundation, Inc.
 
 # This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/gas/testsuite/gas/hppa/basic/basic.exp	Sat Aug 28 21:00:36 1999
+++ gas/testsuite/gas/hppa/basic/basic.exp	Sun Aug 20 23:17:48 2000
@@ -1,3 +1,3 @@
-# Copyright (C) 1993, 1996, 1997 Free Software Foundation, Inc.
+# Copyright 1993, 1996, 1997 Free Software Foundation, Inc.
 
 # This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/gas/testsuite/gas/hppa/parse/parse.exp	Tue Jul 11 01:21:05 2000
+++ gas/testsuite/gas/hppa/parse/parse.exp	Sun Aug 20 23:17:49 2000
@@ -1,3 +1,3 @@
-# Copyright (C) 1993, 1996, 1997 Free Software Foundation, Inc.
+# Copyright 1993, 1996, 1997 Free Software Foundation, Inc.
 
 # This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/gas/testsuite/gas/hppa/reloc/reloc.exp	Tue Jul 11 01:21:05 2000
+++ gas/testsuite/gas/hppa/reloc/reloc.exp	Sun Aug 20 23:17:49 2000
@@ -1,3 +1,3 @@
-# Copyright (C) 1993, 1996, 1997 Free Software Foundation, Inc.
+# Copyright 1993, 1996, 1997 Free Software Foundation, Inc.
 
 # This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/gas/testsuite/gas/hppa/unsorted/unsorted.exp	Tue Jul 11 01:21:05 2000
+++ gas/testsuite/gas/hppa/unsorted/unsorted.exp	Sun Aug 20 23:17:49 2000
@@ -1,3 +1,3 @@
-# Copyright (C) 1993, 1997 Free Software Foundation, Inc.
+# Copyright 1993, 1997 Free Software Foundation, Inc.
 
 # This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/gas/testsuite/gas/mn10200/basic.exp	Mon May  3 17:28:51 1999
+++ gas/testsuite/gas/mn10200/basic.exp	Sun Aug 20 23:17:52 2000
@@ -1,3 +1,3 @@
-# Copyright (C) 1996 Free Software Foundation, Inc.
+# Copyright 1996 Free Software Foundation, Inc.
 
 # This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/gas/testsuite/gas/mn10300/basic.exp	Tue May 30 06:10:32 2000
+++ gas/testsuite/gas/mn10300/basic.exp	Sun Aug 20 23:17:52 2000
@@ -1,3 +1,3 @@
-# Copyright (C) 1996, 2000 Free Software Foundation, Inc.
+# Copyright 1996, 2000 Free Software Foundation, Inc.
 
 # This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/gas/testsuite/gas/sh/basic.exp	Mon May  3 17:28:52 1999
+++ gas/testsuite/gas/sh/basic.exp	Sun Aug 20 23:17:52 2000
@@ -1,3 +1,3 @@
-# Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
+# Copyright 1995, 1996, 1997 Free Software Foundation, Inc.
 
 # This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/gas/testsuite/gas/v850/basic.exp	Mon May  3 17:28:52 1999
+++ gas/testsuite/gas/v850/basic.exp	Sun Aug 20 23:18:00 2000
@@ -1,3 +1,3 @@
-# Copyright (C) 1996 Free Software Foundation, Inc.
+# Copyright 1996 Free Software Foundation, Inc.
 
 # This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/gas/testsuite/lib/gas-defs.exp	Sat Apr  1 04:54:24 2000
+++ gas/testsuite/lib/gas-defs.exp	Sun Aug 20 23:53:33 2000
@@ -1,4 +1,3 @@
-# Copyright (C) 1993, 1994, 1997, 1998, 1999, 2000 Free Software
-# Foundation, Inc.
+# Copyright 1993, 1994, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
 
 # This program is free software; you can redistribute it and/or modify

# gprof
2000-08-25  Rodney Brown  <RodneyBrown@mynd.com>

	* basic_blocks.c basic_blocks.h: Standardize FSF Copyright statements.
	* bb_exit_func.c: Likewise.
	* call_graph.c call_graph.h cg_print.c cg_print.h: Likewise.
	* corefile.c corefile.h gmon_io.c gmon_io.h gmon_out.h: Likewise.
	* gprof.texi hist.c hist.h search_list.c search_list.h: Likewise.
	* source.c source.h sym_ids.c sym_ids.h symtab.c symtab.h: Likewise.

--- ../binutils-000817/gprof/basic_blocks.c	Tue Jul 25 06:59:03 2000
+++ gprof/basic_blocks.c	Sun Aug 20 23:18:09 2000
@@ -3,5 +3,5 @@
    basic-block related statistics.
 
-   Copyright (C) 2000  Free Software Foundation, Inc.
+   Copyright 2000 Free Software Foundation, Inc.
 
    This file is part of GNU Binutils.
--- ../binutils-000817/gprof/basic_blocks.h	Tue Jul 25 06:59:03 2000
+++ gprof/basic_blocks.h	Sun Aug 20 23:18:09 2000
@@ -1,4 +1,4 @@
 /* basic_blocks.h
-   Copyright (C) 2000  Free Software Foundation, Inc.
+   Copyright 2000 Free Software Foundation, Inc.
 
 This file is part of GNU Binutils.
--- ../binutils-000817/gprof/bb_exit_func.c	Thu Jul 27 05:59:35 2000
+++ gprof/bb_exit_func.c	Sun Aug 20 23:18:09 2000
@@ -2,5 +2,5 @@
     the bb_head chain to .d files.
 
-   Copyright (C) 2000  Free Software Foundation, Inc.
+   Copyright 2000 Free Software Foundation, Inc.
 
    This file is part of GNU Binutils.
--- ../binutils-000817/gprof/call_graph.c	Tue Jul 25 06:59:03 2000
+++ gprof/call_graph.c	Sun Aug 20 23:18:09 2000
@@ -1,5 +1,5 @@
 /* call_graph.c  -  Create call graphs.
 
-   Copyright (C) 2000  Free Software Foundation, Inc.
+   Copyright 2000 Free Software Foundation, Inc.
 
    This file is part of GNU Binutils.
--- ../binutils-000817/gprof/call_graph.h	Tue Jul 25 06:59:03 2000
+++ gprof/call_graph.h	Sun Aug 20 23:18:09 2000
@@ -1,5 +1,5 @@
 /* call_graph.h
    
-   Copyright (C) 2000  Free Software Foundation, Inc.
+   Copyright 2000 Free Software Foundation, Inc.
 
 This file is part of GNU Binutils.
--- ../binutils-000817/gprof/cg_print.c	Tue Jul 25 06:59:03 2000
+++ gprof/cg_print.c	Sun Aug 20 23:18:09 2000
@@ -1,5 +1,5 @@
 /* cg_print.c -  Print routines for displaying call graphs.
 
-   Copyright (C) 2000  Free Software Foundation, Inc.
+   Copyright 2000 Free Software Foundation, Inc.
 
    This file is part of GNU Binutils.
--- ../binutils-000817/gprof/cg_print.h	Tue Jul 25 06:59:03 2000
+++ gprof/cg_print.h	Sun Aug 20 23:18:09 2000
@@ -1,5 +1,5 @@
 /* cg_print.h
    
-   Copyright (C) 2000  Free Software Foundation, Inc.
+   Copyright 2000 Free Software Foundation, Inc.
 
 This file is part of GNU Binutils.
--- ../binutils-000817/gprof/corefile.c	Tue Jul 25 06:59:03 2000
+++ gprof/corefile.c	Sun Aug 20 23:18:09 2000
@@ -1,5 +1,5 @@
 /* corefile.c
 
-   Copyright (C) 2000  Free Software Foundation, Inc.
+   Copyright 2000 Free Software Foundation, Inc.
 
    This file is part of GNU Binutils.
--- ../binutils-000817/gprof/corefile.h	Tue Jul 25 06:59:03 2000
+++ gprof/corefile.h	Sun Aug 20 23:18:09 2000
@@ -1,5 +1,5 @@
 /* corefile.h
    
-   Copyright (C) 2000  Free Software Foundation, Inc.
+   Copyright 2000 Free Software Foundation, Inc.
 
 This file is part of GNU Binutils.
--- ../binutils-000817/gprof/gmon_io.c	Tue Jul 25 06:59:03 2000
+++ gprof/gmon_io.c	Sun Aug 20 23:18:09 2000
@@ -1,5 +1,5 @@
 /* gmon_io.c - Input and output from/to gmon.out files.
 
-   Copyright (C) 2000  Free Software Foundation, Inc.
+   Copyright 2000 Free Software Foundation, Inc.
 
    This file is part of GNU Binutils.
--- ../binutils-000817/gprof/gmon_io.h	Tue Jul 25 06:59:03 2000
+++ gprof/gmon_io.h	Sun Aug 20 23:18:09 2000
@@ -1,5 +1,5 @@
 /* gmon_io.h
    
-   Copyright (C) 2000  Free Software Foundation, Inc.
+   Copyright 2000 Free Software Foundation, Inc.
 
 This file is part of GNU Binutils.
--- ../binutils-000817/gprof/gmon_out.h	Tue Jul 25 06:59:03 2000
+++ gprof/gmon_out.h	Sun Aug 20 23:18:09 2000
@@ -1,5 +1,5 @@
 /* gmon_out.h
    
-   Copyright (C) 2000  Free Software Foundation, Inc.
+   Copyright 2000 Free Software Foundation, Inc.
 
 This file is part of GNU Binutils.
--- ../binutils-000817/gprof/gprof.texi	Fri Jul 21 04:02:56 2000
+++ gprof/gprof.texi	Sun Aug 20 23:18:09 2000
@@ -17,5 +17,5 @@
 This file documents the gprof profiler of the GNU system.
 
-Copyright (C) 1988, 92, 97, 98, 99, 2000 Free Software Foundation, Inc.
+Copyright 1988, 1992, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
 
 Permission is granted to make and distribute verbatim copies of
@@ -55,5 +55,6 @@
 
 @vskip 0pt plus 1filll
-Copyright @copyright{} 1988, 92, 97, 98, 99, 2000 Free Software Foundation, Inc.
+Copyright @copyright{} 1988, 1992, 1997, 1998, 1999, 2000
+Free Software Foundation, Inc.
 
 Permission is granted to make and distribute verbatim copies of
--- ../binutils-000817/gprof/hist.c	Tue Jul 25 06:59:03 2000
+++ gprof/hist.c	Sun Aug 20 23:18:09 2000
@@ -1,5 +1,5 @@
 /* hist.c  -  Histogram related operations.
 
-   Copyright (C) 2000  Free Software Foundation, Inc.
+   Copyright 2000 Free Software Foundation, Inc.
 
    This file is part of GNU Binutils.
--- ../binutils-000817/gprof/hist.h	Tue Jul 25 06:59:03 2000
+++ gprof/hist.h	Sun Aug 20 23:18:09 2000
@@ -1,5 +1,5 @@
 /* hist.h
    
-   Copyright (C) 2000  Free Software Foundation, Inc.
+   Copyright 2000 Free Software Foundation, Inc.
 
 This file is part of GNU Binutils.
--- ../binutils-000817/gprof/search_list.c	Tue Jul 25 06:59:03 2000
+++ gprof/search_list.c	Sun Aug 20 23:18:09 2000
@@ -1,5 +1,5 @@
 /* search-list.c
 
-   Copyright (C) 2000  Free Software Foundation, Inc.
+   Copyright 2000 Free Software Foundation, Inc.
 
    This file is part of GNU Binutils.
--- ../binutils-000817/gprof/search_list.h	Tue Jul 25 06:59:03 2000
+++ gprof/search_list.h	Sun Aug 20 23:18:09 2000
@@ -1,5 +1,5 @@
 /* search-list.h
    
-   Copyright (C) 2000  Free Software Foundation, Inc.
+   Copyright 2000 Free Software Foundation, Inc.
 
 This file is part of GNU Binutils.
--- ../binutils-000817/gprof/source.c	Tue Jul 25 06:59:03 2000
+++ gprof/source.c	Sun Aug 20 23:18:09 2000
@@ -1,5 +1,5 @@
 /* source.c - Keep track of source files.
 
-   Copyright (C) 2000  Free Software Foundation, Inc.
+   Copyright 2000 Free Software Foundation, Inc.
 
    This file is part of GNU Binutils.
--- ../binutils-000817/gprof/source.h	Tue Jul 25 06:59:03 2000
+++ gprof/source.h	Sun Aug 20 23:18:09 2000
@@ -1,5 +1,5 @@
 /* source.h
    
-   Copyright (C) 2000  Free Software Foundation, Inc.
+   Copyright 2000 Free Software Foundation, Inc.
 
 This file is part of GNU Binutils.
--- ../binutils-000817/gprof/sym_ids.c	Tue Jul 25 06:59:03 2000
+++ gprof/sym_ids.c	Sun Aug 20 23:18:09 2000
@@ -1,5 +1,5 @@
 /* sym_ids.c
 
-   Copyright (C) 2000  Free Software Foundation, Inc.
+   Copyright 2000 Free Software Foundation, Inc.
 
    This file is part of GNU Binutils.
--- ../binutils-000817/gprof/sym_ids.h	Tue Jul 25 06:59:03 2000
+++ gprof/sym_ids.h	Sun Aug 20 23:18:09 2000
@@ -1,5 +1,5 @@
 /* sym_ids.h
    
-   Copyright (C) 2000  Free Software Foundation, Inc.
+   Copyright 2000 Free Software Foundation, Inc.
 
 This file is part of GNU Binutils.
--- ../binutils-000817/gprof/symtab.c	Tue Jul 25 06:59:03 2000
+++ gprof/symtab.c	Sun Aug 20 23:18:09 2000
@@ -1,5 +1,5 @@
 /* symtab.c
 
-   Copyright (C) 2000  Free Software Foundation, Inc.
+   Copyright 2000 Free Software Foundation, Inc.
 
    This file is part of GNU Binutils.
--- ../binutils-000817/gprof/symtab.h	Tue Jul 25 06:59:03 2000
+++ gprof/symtab.h	Sun Aug 20 23:18:09 2000
@@ -1,5 +1,5 @@
 /* symtab.h
    
-   Copyright (C) 2000  Free Software Foundation, Inc.
+   Copyright 2000 Free Software Foundation, Inc.
 
 This file is part of GNU Binutils.

# include
2000-08-25  Rodney Brown  <RodneyBrown@mynd.com>

	* bfdlink.h dyn-string.h: Standardize FSF Copyright statements.
	* floatformat.h fnmatch.h gdbm.h: Likewise.
	* getopt.h hashtab.h obstack.h os9k.h partition.h: Likewise.
	* progress.h remote-sim.h sim-d10v.h sort.h splay-tree.h: Likewise.
	* symcat.h: Likewise.

--- ../binutils-000817/include/bfdlink.h	Fri Jul 21 07:19:33 2000
+++ include/bfdlink.h	Sun Aug 20 23:18:01 2000
@@ -1,4 +1,4 @@
 /* bfdlink.h -- header file for BFD link routines
-   Copyright 1993, 94, 95, 96, 97, 1999 Free Software Foundation, Inc.
+   Copyright 1993, 1994, 1995, 1996, 1997, 1999 Free Software Foundation, Inc.
    Written by Steve Chamberlain and Ian Lance Taylor, Cygnus Support.
 
--- ../binutils-000817/include/dyn-string.h	Fri Jul 21 04:55:35 2000
+++ include/dyn-string.h	Sun Aug 20 23:18:01 2000
@@ -1,4 +1,4 @@
 /* An abstract string datatype.
-   Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1998, 1999, 2000 Free Software Foundation, Inc.
    Contributed by Mark Mitchell (mark@markmitchell.com).
 
--- ../binutils-000817/include/floatformat.h	Wed May 31 20:55:00 2000
+++ include/floatformat.h	Sun Aug 20 23:18:01 2000
@@ -1,4 +1,4 @@
 /* IEEE floating point support declarations, for GDB, the GNU Debugger.
-   Copyright (C) 1991, 2000 Free Software Foundation, Inc.
+   Copyright 1991, 2000 Free Software Foundation, Inc.
 
 This file is part of GDB.
--- ../binutils-000817/include/fnmatch.h	Mon May  3 17:29:01 1999
+++ include/fnmatch.h	Sun Aug 20 23:18:01 2000
@@ -1,3 +1,3 @@
-/* Copyright (C) 1991, 1992, 1993 Free Software Foundation, Inc.
+/* Copyright 1991, 1992, 1993 Free Software Foundation, Inc.
 
 NOTE: The canonical source of this file is maintained with the GNU C Library.
--- ../binutils-000817/include/gdbm.h	Mon May  3 17:29:02 1999
+++ include/gdbm.h	Sun Aug 20 23:18:01 2000
@@ -1,4 +1,4 @@
 /* GNU DBM - DataBase Manager include file
-   Copyright 1989, 1991  Free Software Foundation, Inc.
+   Copyright 1989, 1991 Free Software Foundation, Inc.
    Written by Philip A. Nelson.
 
--- ../binutils-000817/include/getopt.h	Sun Jun 18 09:08:19 2000
+++ include/getopt.h	Sun Aug 20 23:18:01 2000
@@ -1,4 +1,5 @@
 /* Declarations for getopt.
-   Copyright (C) 1989,90,91,92,93,94,96,97 Free Software Foundation, Inc.
+   Copyright 1989, 1990, 1991, 1992, 1993, 1994, 1996, 1997
+   Free Software Foundation, Inc.
 
    NOTE: The canonical source of this file is maintained with the GNU C Library.
--- ../binutils-000817/include/hashtab.h	Fri Jun 16 06:47:02 2000
+++ include/hashtab.h	Sun Aug 20 23:18:01 2000
@@ -1,4 +1,4 @@
 /* An expandable hash tables datatype.  
-   Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1999, 2000 Free Software Foundation, Inc.
    Contributed by Vladimir Makarov (vmakarov@cygnus.com).
 
--- ../binutils-000817/include/obstack.h	Wed Feb 23 03:18:13 2000
+++ include/obstack.h	Sun Aug 20 23:18:01 2000
@@ -1,4 +1,5 @@
 /* obstack.h - object stack macros
-   Copyright (C) 1988,89,90,91,92,93,94,96,97,98 Free Software Foundation, Inc.
+   Copyright 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1996, 1997, 1998
+   Free Software Foundation, Inc.
 
 
--- ../binutils-000817/include/os9k.h	Sun Jul 30 05:37:30 2000
+++ include/os9k.h	Sun Aug 20 23:18:01 2000
@@ -1,4 +1,4 @@
 /* os9k.h  -  OS-9000 i386 module header definitions
-   Copyright (C) 2000 Free Software Foundation, Inc.
+   Copyright 2000 Free Software Foundation, Inc.
 
 This file is part of GNU CC.
--- ../binutils-000817/include/partition.h	Sat Mar 25 13:15:38 2000
+++ include/partition.h	Sun Aug 20 23:18:01 2000
@@ -1,4 +1,4 @@
 /* List implentation of a partition of consecutive integers.
-   Copyright (C) 2000 Free Software Foundation, Inc.
+   Copyright 2000 Free Software Foundation, Inc.
    Contributed by CodeSourcery, LLC.
 
--- ../binutils-000817/include/progress.h	Mon May  3 17:29:02 1999
+++ include/progress.h	Sun Aug 20 23:18:01 2000
@@ -1,4 +1,4 @@
 /* Default definitions for progress macros.
-   Copyright (C) 1994 Free Software Foundation, Inc.
+   Copyright 1994 Free Software Foundation, Inc.
 
 This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/include/remote-sim.h	Tue Feb 22 19:52:20 2000
+++ include/remote-sim.h	Sun Aug 20 23:18:01 2000
@@ -1,4 +1,4 @@
 /* This file defines the interface between the simulator and gdb.
-   Copyright (C) 1993, 1994, 1996, 1997 Free Software Foundation, Inc.
+   Copyright 1993, 1994, 1996, 1997 Free Software Foundation, Inc.
 
 This file is part of GDB.
--- ../binutils-000817/include/sim-d10v.h	Thu Nov 11 23:57:11 1999
+++ include/sim-d10v.h	Sun Aug 20 23:18:01 2000
@@ -1,4 +1,4 @@
 /* This file defines the interface between the d10v simulator and gdb.
-   Copyright (C) 1999 Free Software Foundation, Inc.
+   Copyright 1999 Free Software Foundation, Inc.
 
 This file is part of GDB.
--- ../binutils-000817/include/sort.h	Fri Jun 16 06:47:02 2000
+++ include/sort.h	Sun Aug 20 23:18:01 2000
@@ -1,4 +1,4 @@
 /* Sorting algorithms.
-   Copyright (C) 2000 Free Software Foundation, Inc.
+   Copyright 2000 Free Software Foundation, Inc.
    Contributed by Mark Mitchell <mark@codesourcery.com>.
 
--- ../binutils-000817/include/splay-tree.h	Thu Apr  6 10:15:35 2000
+++ include/splay-tree.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* A splay-tree datatype.  
-   Copyright (C) 1998 Free Software Foundation, Inc.
+   Copyright 1998 Free Software Foundation, Inc.
    Contributed by Mark Mitchell (mark@markmitchell.com).
 
--- ../binutils-000817/include/symcat.h	Sun Jun 18 09:08:19 2000
+++ include/symcat.h	Sun Aug 20 23:18:02 2000
@@ -1,5 +1,5 @@
 /* Symbol concatenation utilities.
 
-   Copyright (C) 1998, 2000 Free Software Foundation, Inc.
+   Copyright 1998, 2000 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify

# include/aout
2000-08-25  Rodney Brown  <RodneyBrown@mynd.com>

	* encap.h hp300hpux.h: Standardize FSF Copyright statements.
	* ranlib.h reloc.h stab.def: Likewise.

--- ../binutils-000817/include/aout/encap.h	Mon May  3 17:29:02 1999
+++ include/aout/encap.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* Yet Another Try at encapsulating bsd object files in coff.
-   Copyright (C) 1988, 1989, 1991 Free Software Foundation, Inc.
+   Copyright 1988, 1989, 1991 Free Software Foundation, Inc.
    Written by Pace Willisson 12/9/88
 
--- ../binutils-000817/include/aout/hp300hpux.h	Mon May  3 17:29:03 1999
+++ include/aout/hp300hpux.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* Special version of <a.out.h> for use under hp-ux.
-   Copyright (C) 1988,1993 Free Software Foundation, Inc. */
+   Copyright 1988, 1993 Free Software Foundation, Inc. */
 
 struct hp300hpux_exec_bytes
--- ../binutils-000817/include/aout/ranlib.h	Mon May  3 17:29:03 1999
+++ include/aout/ranlib.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* ranlib.h -- archive library index member definition for GNU.
-   Copyright 1990-1991  Free Software Foundation, Inc.
+   Copyright 1990, 1991 Free Software Foundation, Inc.
 
 This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/include/aout/reloc.h	Mon May  3 17:29:03 1999
+++ include/aout/reloc.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* reloc.h -- Header file for relocation information.
-   Copyright 1989-1991  Free Software Foundation, Inc.
+   Copyright 1989, 1990, 1991 Free Software Foundation, Inc.
 
 This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/include/aout/stab.def	Mon May  3 17:29:03 1999
+++ include/aout/stab.def	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* Table of DBX symbol codes for the GNU system.
-   Copyright (C) 1988, 91, 92, 93, 94, 95, 96, 1998
+   Copyright 1988, 1991, 1992, 1993, 1994, 1995, 1996, 1998
    Free Software Foundation, Inc.
 

# include/coff
2000-08-25  Rodney Brown  <RodneyBrown@mynd.com>

	* arm.h mcore.h: Standardize FSF Copyright statements.
	* rs6000.h rs6k64.h: Likewise.

--- ../binutils-000817/include/coff/arm.h	Fri Feb 25 06:49:18 2000
+++ include/coff/arm.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* ARM COFF support for BFD.
-   Copyright (C) 1998, 1999 Free Software Foundation, Inc.
+   Copyright 1998, 1999 Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/include/coff/mcore.h	Fri Jan 21 06:08:43 2000
+++ include/coff/mcore.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* Motorola MCore support for BFD.
-   Copyright (C) 1999 Free Software Foundation, Inc.
+   Copyright 1999 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/include/coff/rs6000.h	Mon May  3 17:29:03 1999
+++ include/coff/rs6000.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* IBM RS/6000 "XCOFF" file definitions for BFD.
-   Copyright (C) 1990, 1991 Free Software Foundation, Inc.
+   Copyright 1990, 1991 Free Software Foundation, Inc.
    FIXME: Can someone provide a transliteration of this name into ASCII?
    Using the following chars caused a compiler warning on HIUX (so I replaced
--- ../binutils-000817/include/coff/rs6k64.h	Sat May  6 11:41:50 2000
+++ include/coff/rs6k64.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* IBM RS/6000 "XCOFF64" file definitions for BFD.
-   Copyright (C) 2000 Free Software Foundation, Inc.  */
+   Copyright 2000 Free Software Foundation, Inc.  */
 
 /********************** FILE HEADER **********************/

# include/elf
2000-08-25  Rodney Brown  <RodneyBrown@mynd.com>

	* alpha.h arc.h arm.h avr.h: Standardize FSF Copyright statements.
	* common.h cris.h d10v.h d30v.h: Likewise.
	* dwarf.h dwarf2.h external.h fr30.h hppa.h i370.h i386.h: Likewise.
	* i860.h i960.h ia64.h internal.h m32r.h m68hc11.h m68k.h: Likewise.
	* mcore.h mips.h mn10200.h mn10300.h pj.h ppc.h: Likewise.
	* reloc-macros.h sh.h sparc.h v850.h: Likewise.

--- ../binutils-000817/include/elf/alpha.h	Wed Jun  7 14:08:12 2000
+++ include/elf/alpha.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* ALPHA ELF support for BFD.
-   Copyright (C) 1996, 98, 2000 Free Software Foundation, Inc.
+   Copyright 1996, 1998, 2000 Free Software Foundation, Inc.
 
    By Eric Youngdale, <eric@aib.com>.  No processor supplement available
--- ../binutils-000817/include/elf/arc.h	Wed Jun  7 14:08:12 2000
+++ include/elf/arc.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* ARC ELF support for BFD.
-   Copyright (C) 1995, 97, 98, 2000 Free Software Foundation, Inc.
+   Copyright 1995, 1997, 1998, 2000 Free Software Foundation, Inc.
    Contributed by Doug Evans, (dje@cygnus.com)
 
--- ../binutils-000817/include/elf/arm.h	Wed Jun  7 13:43:33 2000
+++ include/elf/arm.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* ARM ELF support for BFD.
-   Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1998, 1999, 2000 Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/include/elf/avr.h	Tue Jun 27 11:45:30 2000
+++ include/elf/avr.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* AVR ELF support for BFD.
-   Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1999, 2000 Free Software Foundation, Inc.
    Contributed by Denis Chertykov <denisc@overta.ru>
 
--- ../binutils-000817/include/elf/common.h	Fri Jul 21 01:44:56 2000
+++ include/elf/common.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* ELF support for BFD.
-   Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/include/elf/cris.h	Fri Jul 21 01:44:56 2000
+++ include/elf/cris.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* CRIS ELF support for BFD.
-   Copyright (C) 2000 Free Software Foundation, Inc.
+   Copyright 2000 Free Software Foundation, Inc.
    Contributed by Axis Communications AB, Lund, Sweden.
    Written by Hans-Peter Nilsson.
--- ../binutils-000817/include/elf/d10v.h	Wed Jun  7 14:08:12 2000
+++ include/elf/d10v.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* d10v ELF support for BFD.
-   Copyright (C) 1998, 2000 Free Software Foundation, Inc.
+   Copyright 1998, 2000 Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/include/elf/d30v.h	Wed Jun  7 14:08:12 2000
+++ include/elf/d30v.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* d30v ELF support for BFD.
-   Copyright (C) 1998, 2000 Free Software Foundation, Inc.
+   Copyright 1998, 2000 Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/include/elf/dwarf.h	Thu Jun  3 04:14:13 1999
+++ include/elf/dwarf.h	Sun Aug 20 23:18:02 2000
@@ -4,5 +4,5 @@
    Written by Ron Guilmette (rfg@ncd.com)
 
-Copyright (C) 1992, 1999 Free Software Foundation, Inc.
+Copyright 1992, 1999 Free Software Foundation, Inc.
 
 This file is part of GNU CC.
--- ../binutils-000817/include/elf/dwarf2.h	Thu Jun  3 04:14:14 1999
+++ include/elf/dwarf2.h	Sun Aug 20 23:18:02 2000
@@ -1,5 +1,5 @@
 /* Declarations and definitions of codes relating to the DWARF symbolic
    debugging information format.
-   Copyright (C) 1992, 1993, 1995, 1996, 1999 Free Software Foundation, Inc.
+   Copyright 1992, 1993, 1995, 1996, 1999 Free Software Foundation, Inc.
 
    Written by Gary Funck (gary@intrepid.com) The Ada Joint Program
--- ../binutils-000817/include/elf/external.h	Mon May  3 17:29:03 1999
+++ include/elf/external.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,5 @@
 /* ELF support for BFD.
-   Copyright (C) 1991, 92, 93, 95, 97, 98, 1999 Free Software Foundation, Inc.
+   Copyright 1991, 1992, 1993, 1995, 1997, 1998, 1999
+   Free Software Foundation, Inc.
 
    Written by Fred Fish @ Cygnus Support, from information published
--- ../binutils-000817/include/elf/fr30.h	Wed Jun  7 14:08:12 2000
+++ include/elf/fr30.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* FR30 ELF support for BFD.
-   Copyright (C) 1998, 99, 2000 Free Software Foundation, Inc.
+   Copyright 1998, 1999, 2000 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/include/elf/hppa.h	Tue Jul 11 01:34:31 2000
+++ include/elf/hppa.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* HPPA ELF support for BFD.
-   Copyright (C) 1993, 94, 95, 99, 2000 Free Software Foundation, Inc.
+   Copyright 1993, 1994, 1995, 1999, 2000 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/include/elf/i370.h	Wed Jun  7 14:08:12 2000
+++ include/elf/i370.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* i370 ELF support for BFD.
-   Copyright (C) 2000 Free Software Foundation, Inc.
+   Copyright 2000 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/include/elf/i386.h	Wed Jun  7 14:08:12 2000
+++ include/elf/i386.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* ix86 ELF support for BFD.
-   Copyright (C) 1998, 99, 2000 Free Software Foundation, Inc.
+   Copyright 1998, 1999, 2000 Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/include/elf/i860.h	Sat Jul 29 07:10:19 2000
+++ include/elf/i860.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* i860 ELF support for BFD.
-   Copyright (C) 2000 Free Software Foundation, Inc.
+   Copyright 2000 Free Software Foundation, Inc.
 
    Contributed by Jason Eckhardt <jle@cygnus.com>.
--- ../binutils-000817/include/elf/i960.h	Wed Jun  7 14:08:12 2000
+++ include/elf/i960.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* Intel 960 ELF support for BFD.
-   Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1999, 2000 Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/include/elf/ia64.h	Tue Aug 15 06:13:39 2000
+++ include/elf/ia64.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* IA-64 ELF support for BFD.
-   Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1998, 1999, 2000 Free Software Foundation, Inc.
    Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
 
--- ../binutils-000817/include/elf/internal.h	Wed Jul 12 21:54:35 2000
+++ include/elf/internal.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* ELF support for BFD.
-   Copyright (C) 1991, 92, 93, 94, 95, 97, 98, 2000
+   Copyright 1991, 1992, 1993, 1994, 1995, 1997, 1998, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/include/elf/m32r.h	Wed Jun  7 14:08:12 2000
+++ include/elf/m32r.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* M32R ELF support for BFD.
-   Copyright (C) 1996, 97, 98, 99, 2000 Free Software Foundation, Inc.
+   Copyright 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/include/elf/m68hc11.h	Mon Jun 19 11:22:42 2000
+++ include/elf/m68hc11.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* m68hc11 & m68hc12 ELF support for BFD.
-   Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1999, 2000 Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/include/elf/m68k.h	Wed Jun  7 14:08:12 2000
+++ include/elf/m68k.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* MC68k ELF support for BFD.
-   Copyright (C) 1998, 99, 2000 Free Software Foundation, Inc.
+   Copyright 1998, 1999, 2000 Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/include/elf/mcore.h	Wed Jun  7 14:08:12 2000
+++ include/elf/mcore.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* Motorola MCore support for BFD.
-   Copyright (C) 1995, 99, 2000 Free Software Foundation, Inc.
+   Copyright 1995, 1999, 2000 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/include/elf/mips.h	Wed Jun  7 14:08:12 2000
+++ include/elf/mips.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* MIPS ELF support for BFD.
-   Copyright (C) 1993, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/include/elf/mn10200.h	Wed Jun  7 14:08:12 2000
+++ include/elf/mn10200.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* MN10200 ELF support for BFD.
-   Copyright (C) 1998, 2000 Free Software Foundation, Inc.
+   Copyright 1998, 2000 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/include/elf/mn10300.h	Wed Jun  7 14:08:12 2000
+++ include/elf/mn10300.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* MN10300 ELF support for BFD.
-   Copyright (C) 1998, 99, 2000 Free Software Foundation, Inc.
+   Copyright 1998, 1999, 2000 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/include/elf/pj.h	Wed Jun  7 14:08:12 2000
+++ include/elf/pj.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* picoJava ELF support for BFD.
-   Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1999, 2000 Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/include/elf/ppc.h	Tue Aug  8 04:54:49 2000
+++ include/elf/ppc.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* PPC ELF support for BFD.
-   Copyright (C) 1995, 96, 98, 2000 Free Software Foundation, Inc.
+   Copyright 1995, 1996, 1998, 2000 Free Software Foundation, Inc.
 
    By Michael Meissner, Cygnus Support, <meissner@cygnus.com>, from information
--- ../binutils-000817/include/elf/reloc-macros.h	Wed Jun  7 14:08:12 2000
+++ include/elf/reloc-macros.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* Generic relocation support for BFD.
-   Copyright (C) 1998, 99, 2000 Free Software Foundation, Inc.
+   Copyright 1998, 1999, 2000 Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/include/elf/sh.h	Wed Jun  7 13:43:33 2000
+++ include/elf/sh.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* SH ELF support for BFD.
-   Copyright (C) 1998, 2000 Free Software Foundation, Inc.
+   Copyright 1998, 2000 Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/include/elf/sparc.h	Wed Jun  7 14:08:12 2000
+++ include/elf/sparc.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* SPARC ELF support for BFD.
-   Copyright (C) 1996, 97, 98, 99, 2000 Free Software Foundation, Inc.
+   Copyright 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
    By Doug Evans, Cygnus Support, <dje@cygnus.com>.
 
--- ../binutils-000817/include/elf/v850.h	Tue Aug  8 04:54:49 2000
+++ include/elf/v850.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* V850 ELF support for BFD.
-   Copyright (C) 1997, 98, 2000 Free Software Foundation, Inc.
+   Copyright 1997, 1998, 2000 Free Software Foundation, Inc.
    Created by Michael Meissner, Cygnus Support <meissner@cygnus.com>
 

# include/mpw
2000-08-25  Rodney Brown  <RodneyBrown@mynd.com>

	* spin.h: Standardize FSF Copyright statements.

--- ../binutils-000817/include/mpw/spin.h	Mon May  3 17:29:04 1999
+++ include/mpw/spin.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* Progress macros that use SpinCursor in MPW.
-   Copyright (C) 1994 Free Software Foundation, Inc.
+   Copyright 1994 Free Software Foundation, Inc.
 
 This program is free software; you can redistribute it and/or modify

# include/nlm
2000-08-25  Rodney Brown  <RodneyBrown@mynd.com>

	* alpha-ext.h common.h: Standardize FSF Copyright statements.
	* external.h i386-ext.h internal.h: Likewise.
	* ppc-ext.h sparc32-ext.h: Likewise.

--- ../binutils-000817/include/nlm/alpha-ext.h	Mon May  3 17:29:04 1999
+++ include/nlm/alpha-ext.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* Alpha NLM (NetWare Loadable Module) support for BFD.
-   Copyright (C) 1993 Free Software Foundation, Inc.
+   Copyright 1993 Free Software Foundation, Inc.
    By Ian Lance Taylor, Cygnus Support
 
--- ../binutils-000817/include/nlm/common.h	Mon May  3 17:29:04 1999
+++ include/nlm/common.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* NLM (NetWare Loadable Module) support for BFD.
-   Copyright (C) 1993 Free Software Foundation, Inc.
+   Copyright 1993 Free Software Foundation, Inc.
 
    Written by Fred Fish @ Cygnus Support
--- ../binutils-000817/include/nlm/external.h	Mon May  3 17:29:04 1999
+++ include/nlm/external.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* NLM (NetWare Loadable Module) support for BFD.
-   Copyright (C) 1993 Free Software Foundation, Inc.
+   Copyright 1993 Free Software Foundation, Inc.
 
    Written by Fred Fish @ Cygnus Support
--- ../binutils-000817/include/nlm/i386-ext.h	Mon May  3 17:29:04 1999
+++ include/nlm/i386-ext.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* i386 NLM (NetWare Loadable Module) support for BFD.
-   Copyright (C) 1993 Free Software Foundation, Inc.
+   Copyright 1993 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/include/nlm/internal.h	Mon May  3 17:29:04 1999
+++ include/nlm/internal.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* NLM (NetWare Loadable Module) support for BFD.
-   Copyright (C) 1993 Free Software Foundation, Inc.
+   Copyright 1993 Free Software Foundation, Inc.
 
    Written by Fred Fish @ Cygnus Support.
--- ../binutils-000817/include/nlm/ppc-ext.h	Mon May  3 17:29:04 1999
+++ include/nlm/ppc-ext.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* PowerPC NLM (NetWare Loadable Module) support for BFD.
-   Copyright (C) 1994 Free Software Foundation, Inc.
+   Copyright 1994 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.
--- ../binutils-000817/include/nlm/sparc32-ext.h	Mon May  3 17:29:04 1999
+++ include/nlm/sparc32-ext.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* SPARC NLM (NetWare Loadable Module) support for BFD.
-   Copyright (C) 1993 Free Software Foundation, Inc.
+   Copyright 1993 Free Software Foundation, Inc.
 
 This file is part of BFD, the Binary File Descriptor library.

# include/opcode
2000-08-25  Rodney Brown  <RodneyBrown@mynd.com>

	* arm.h cgen.h cris.h: Standardize FSF Copyright statements.
	* d30v.h h8300.h hppa.h i370.h i386.h: Likewise.
	* i860.h m68k.h mips.h np1.h ns32k.h pj.h pn.h sparc.h: Likewise.
	* vax.h: Likewise.

--- ../binutils-000817/include/opcode/arm.h	Mon May  3 17:29:05 1999
+++ include/opcode/arm.h	Sun Aug 20 23:18:02 2000
@@ -1,4 +1,4 @@
 /* ARM opcode list.
-   Copyright (C) 1989, Free Software Foundation, Inc.
+   Copyright 1989 Free Software Foundation, Inc.
 
 This file is part of GDB and GAS.
--- ../binutils-000817/include/opcode/cgen.h	Thu Jul 27 08:44:42 2000
+++ include/opcode/cgen.h	Sun Aug 20 23:18:03 2000
@@ -1,5 +1,5 @@
 /* Header file for targets using CGEN: Cpu tools GENerator.
 
-Copyright (C) 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
+Copyright 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
 
 This file is part of GDB, the GNU debugger, and the GNU Binutils.
--- ../binutils-000817/include/opcode/cris.h	Fri Jul 21 01:39:41 2000
+++ include/opcode/cris.h	Sun Aug 20 23:18:03 2000
@@ -1,4 +1,4 @@
 /* cris.h -- Header file for CRIS opcode and register tables.
-   Copyright (C) 2000 Free Software Foundation, Inc.
+   Copyright 2000 Free Software Foundation, Inc.
    Contributed by Axis Communications AB, Lund, Sweden.
    Originally written for GAS 1.38.1 by Mikael Asker.
--- ../binutils-000817/include/opcode/d30v.h	Tue Mar 28 06:17:02 2000
+++ include/opcode/d30v.h	Sun Aug 20 23:18:03 2000
@@ -1,4 +1,4 @@
 /* d30v.h -- Header file for D30V opcode table
-   Copyright (C) 1997, 2000 Free Software Foundation, Inc.
+   Copyright 1997, 2000 Free Software Foundation, Inc.
    Written by Martin Hunt (hunt@cygnus.com), Cygnus Solutions
 
--- ../binutils-000817/include/opcode/h8300.h	Tue May  2 02:55:50 2000
+++ include/opcode/h8300.h	Mon Aug 21 00:01:01 2000
@@ -1,4 +1,5 @@
 /* Opcode table for the H8-300
-   Copyright (C) 1991, 92, 93, 95, 96, 97, 1998 Free Software Foundation.
+   Copyright 1991, 1992, 1993, 1995, 1996, 1997, 1998
+   Free Software Foundation, Inc.
    Written by Steve Chamberlain, sac@cygnus.com.
    
--- ../binutils-000817/include/opcode/hppa.h	Sat Apr 22 07:04:04 2000
+++ include/opcode/hppa.h	Sun Aug 20 23:18:03 2000
@@ -1,4 +1,4 @@
 /* Table of opcodes for the PA-RISC.
-   Copyright (C) 1990, 1991, 1993, 1995, 1999 Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1993, 1995, 1999 Free Software Foundation, Inc.
 
    Contributed by the Center for Software Science at the
--- ../binutils-000817/include/opcode/i370.h	Thu Feb 24 00:52:22 2000
+++ include/opcode/i370.h	Sun Aug 20 23:18:03 2000
@@ -1,4 +1,4 @@
 /* i370.h -- Header file for S/390 opcode table
-   Copyright 1994, 95, 98, 99, 2000 Free Software Foundation, Inc.
+   Copyright 1994, 1995, 1998, 1999, 2000 Free Software Foundation, Inc.
    PowerPC version written by Ian Lance Taylor, Cygnus Support
    Rewritten for i370 ESA/390 support, Linas Vepstas <linas@linas.org>
--- ../binutils-000817/include/opcode/i386.h	Thu Aug 17 03:29:23 2000
+++ include/opcode/i386.h	Sun Aug 20 23:18:03 2000
@@ -1,4 +1,4 @@
 /* opcode/i386.h -- Intel 80386 opcode table
-   Copyright 1989, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1989, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation.
 
--- ../binutils-000817/include/opcode/i860.h	Wed Aug  9 13:33:41 2000
+++ include/opcode/i860.h	Sun Aug 20 23:18:03 2000
@@ -1,4 +1,4 @@
 /* Table of opcodes for the i860.
-   Copyright (C) 1989, 2000 Free Software Foundation, Inc.
+   Copyright 1989, 2000 Free Software Foundation, Inc.
 
 This file is part of GAS, the GNU Assembler, and GDB, the GNU disassembler.
--- ../binutils-000817/include/opcode/m68k.h	Fri May 28 08:31:03 1999
+++ include/opcode/m68k.h	Sun Aug 20 23:18:03 2000
@@ -1,4 +1,5 @@
 /* Opcode table header for m680[01234]0/m6888[12]/m68851.
-   Copyright 1989, 91, 92, 93, 94, 95, 96, 97, 1999 Free Software Foundation.
+   Copyright 1989, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1999
+   Free Software Foundation.
 
 This file is part of GDB, GAS, and the GNU binutils.
--- ../binutils-000817/include/opcode/mips.h	Wed Feb 23 06:01:25 2000
+++ include/opcode/mips.h	Sun Aug 20 23:18:03 2000
@@ -1,4 +1,4 @@
 /* mips.h.  Mips opcode list for GDB, the GNU debugger.
-   Copyright 1993, 94, 95, 96, 1997 Free Software Foundation, Inc.
+   Copyright 1993, 1994, 1995, 1996, 1997 Free Software Foundation, Inc.
    Contributed by Ralph Campbell and OSF
    Commented and modified by Ian Lance Taylor, Cygnus Support
--- ../binutils-000817/include/opcode/np1.h	Mon May  3 17:29:05 1999
+++ include/opcode/np1.h	Sun Aug 20 23:18:03 2000
@@ -1,4 +1,4 @@
 /* Print GOULD NPL instructions for GDB, the GNU debugger.
-   Copyright (C) 1986, 1987, 1989 Free Software Foundation, Inc.
+   Copyright 1986, 1987, 1989 Free Software Foundation, Inc.
 
 This file is part of GDB.
--- ../binutils-000817/include/opcode/ns32k.h	Mon May  3 17:29:05 1999
+++ include/opcode/ns32k.h	Sun Aug 20 23:18:03 2000
@@ -1,4 +1,4 @@
 /* ns32k-opcode.h -- Opcode table for National Semi 32k processor
-   Copyright (C) 1987 Free Software Foundation, Inc.
+   Copyright 1987 Free Software Foundation, Inc.
 
 This file is part of GAS, the GNU Assembler.
--- ../binutils-000817/include/opcode/pj.h	Sun Sep  5 03:16:21 1999
+++ include/opcode/pj.h	Sun Aug 20 23:18:03 2000
@@ -1,4 +1,4 @@
 /* Definitions for decoding the picoJava opcode table.
-   Copyright (C) 1999 Free Software Foundation, Inc.
+   Copyright 1999 Free Software Foundation, Inc.
    Contributed by Steve Chamberlain of Transmeta (sac@pobox.com).
 
--- ../binutils-000817/include/opcode/pn.h	Mon May  3 17:29:05 1999
+++ include/opcode/pn.h	Sun Aug 20 23:18:03 2000
@@ -1,4 +1,4 @@
 /* Print GOULD PN (PowerNode) instructions for GDB, the GNU debugger.
-   Copyright (C) 1986, 1987, 1989 Free Software Foundation, Inc.
+   Copyright 1986, 1987, 1989 Free Software Foundation, Inc.
 
 This file is part of GDB.
--- ../binutils-000817/include/opcode/sparc.h	Mon May  3 17:29:05 1999
+++ include/opcode/sparc.h	Sun Aug 20 23:18:03 2000
@@ -1,4 +1,4 @@
 /* Definitions for opcode table for the sparc.
-   Copyright (C) 1989, 91, 92, 93, 94, 95, 96, 1997
+   Copyright 1989, 1991, 1992, 1993, 1994, 1995, 1996, 1997
    Free Software Foundation, Inc.
 
--- ../binutils-000817/include/opcode/vax.h	Mon May  3 17:29:05 1999
+++ include/opcode/vax.h	Sun Aug 20 23:18:03 2000
@@ -1,4 +1,4 @@
 /* Vax opcde list.
-   Copyright (C) 1989, 1995 Free Software Foundation, Inc.
+   Copyright 1989, 1995 Free Software Foundation, Inc.
 
 This file is part of GDB and GAS.

# intl
2000-08-25  Rodney Brown  <RodneyBrown@mynd.com>

	* Makefile.in aclocal.m4: Standardize FSF Copyright statements.
	* bindtextdom.c cat-compat.c: Likewise.
	* dcgettext.c explodename.c finddomain.c gettext.c: Likewise.
	* gettext.h gettextP.h hash-string.h intlh.inst.in: Likewise.
	* l10nflist.c libgettext.h libintl.glibc linux-msg.sed: Likewise.
	* loadmsgcat.c localealias.c po2tbl.sed.in textdomain.c: Likewise.
	* xopen-msg.sed: Likewise.

--- ../binutils-000817/intl/Makefile.in	Mon May  3 17:29:05 1999
+++ intl/Makefile.in	Sun Aug 20 23:18:09 2000
@@ -1,4 +1,4 @@
 # Makefile for directory with message catalog handling in GNU NLS Utilities.
-# Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
+# Copyright 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
 #
 # This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/intl/aclocal.m4	Mon May  3 17:29:05 1999
+++ intl/aclocal.m4	Sun Aug 20 23:18:09 2000
@@ -1,5 +1,5 @@
 dnl aclocal.m4 generated automatically by aclocal 1.3
 
-dnl Copyright (C) 1994, 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
+dnl Copyright 1994, 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
 dnl This Makefile.in is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
--- ../binutils-000817/intl/bindtextdom.c	Mon May  3 17:29:05 1999
+++ intl/bindtextdom.c	Sun Aug 20 23:18:09 2000
@@ -1,4 +1,4 @@
 /* Implementation of the bindtextdomain(3) function
-   Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
+   Copyright 1995, 1996, 1997 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/intl/cat-compat.c	Mon May  3 17:29:05 1999
+++ intl/cat-compat.c	Sun Aug 20 23:18:09 2000
@@ -1,4 +1,4 @@
 /* Compatibility code for gettext-using-catgets interface.
-   Copyright (C) 1995, 1997 Free Software Foundation, Inc.
+   Copyright 1995, 1997 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/intl/dcgettext.c	Mon May  3 17:29:05 1999
+++ intl/dcgettext.c	Sun Aug 20 23:18:10 2000
@@ -1,4 +1,4 @@
 /* Implementation of the dcgettext(3) function
-   Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
+   Copyright 1995, 1996, 1997 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/intl/explodename.c	Mon May  3 17:29:05 1999
+++ intl/explodename.c	Sun Aug 20 23:18:10 2000
@@ -1,3 +1,3 @@
-/* Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
+/* Copyright 1995, 1996, 1997 Free Software Foundation, Inc.
    Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995.
 
--- ../binutils-000817/intl/finddomain.c	Mon May  3 17:29:05 1999
+++ intl/finddomain.c	Sun Aug 20 23:18:10 2000
@@ -1,4 +1,4 @@
 /* Handle list of needed message catalogs
-   Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
+   Copyright 1995, 1996, 1997 Free Software Foundation, Inc.
    Written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995.
 
--- ../binutils-000817/intl/gettext.c	Mon May  3 17:29:05 1999
+++ intl/gettext.c	Sun Aug 20 23:18:10 2000
@@ -1,4 +1,4 @@
 /* Implementation of gettext(3) function
-   Copyright (C) 1995, 1997 Free Software Foundation, Inc.
+   Copyright 1995, 1997 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/intl/gettext.h	Mon May  3 17:29:05 1999
+++ intl/gettext.h	Sun Aug 20 23:18:10 2000
@@ -1,4 +1,4 @@
 /* Internal header for GNU gettext internationalization functions
-   Copyright (C) 1995, 1997 Free Software Foundation, Inc.
+   Copyright 1995, 1997 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/intl/gettextP.h	Mon May  3 17:29:05 1999
+++ intl/gettextP.h	Sun Aug 20 23:18:10 2000
@@ -1,4 +1,4 @@
 /* Header describing internals of gettext library
-   Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
+   Copyright 1995, 1996, 1997 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/intl/hash-string.h	Mon May  3 17:29:05 1999
+++ intl/hash-string.h	Sun Aug 20 23:18:10 2000
@@ -1,4 +1,4 @@
 /* Implements a string hashing function.
-   Copyright (C) 1995, 1997 Free Software Foundation, Inc.
+   Copyright 1995, 1997 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/intl/intlh.inst.in	Mon May  3 17:29:05 1999
+++ intl/intlh.inst.in	Sun Aug 20 23:18:10 2000
@@ -1,4 +1,4 @@
 /* Message catalogs for internationalization.
-   Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
+   Copyright 1995, 1996, 1997 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/intl/l10nflist.c	Mon May  3 17:29:05 1999
+++ intl/l10nflist.c	Sun Aug 20 23:18:10 2000
@@ -1,4 +1,4 @@
 /* Handle list of needed message catalogs
-   Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
+   Copyright 1995, 1996, 1997 Free Software Foundation, Inc.
    Written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995.
 
--- ../binutils-000817/intl/libgettext.h	Mon May  3 17:29:05 1999
+++ intl/libgettext.h	Sun Aug 20 23:18:10 2000
@@ -1,4 +1,4 @@
 /* Message catalogs for internationalization.
-   Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
+   Copyright 1995, 1996, 1997 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/intl/libintl.glibc	Mon May  3 17:29:05 1999
+++ intl/libintl.glibc	Sun Aug 20 23:18:10 2000
@@ -1,4 +1,4 @@
 /* libgettext.h -- Message catalogs for internationalization.
-Copyright (C) 1995 Free Software Foundation, Inc.
+Copyright 1995 Free Software Foundation, Inc.
 This file is part of the GNU C Library.
 Contributed by Ulrich Drepper.
--- ../binutils-000817/intl/linux-msg.sed	Mon May  3 17:29:05 1999
+++ intl/linux-msg.sed	Sun Aug 20 23:18:10 2000
@@ -1,4 +1,4 @@
 # po2msg.sed - Convert Uniforum style .po file to Linux style .msg file
-# Copyright (C) 1995 Free Software Foundation, Inc.
+# Copyright 1995 Free Software Foundation, Inc.
 # Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995.
 #
--- ../binutils-000817/intl/loadmsgcat.c	Mon May  3 17:29:05 1999
+++ intl/loadmsgcat.c	Sun Aug 20 23:18:10 2000
@@ -1,4 +1,4 @@
 /* Load needed message catalogs
-   Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
+   Copyright 1995, 1996, 1997 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/intl/localealias.c	Mon May  3 17:29:05 1999
+++ intl/localealias.c	Sun Aug 20 23:18:10 2000
@@ -1,4 +1,4 @@
 /* Handle aliases for locale names
-   Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
+   Copyright 1995, 1996, 1997 Free Software Foundation, Inc.
    Written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995.
 
--- ../binutils-000817/intl/po2tbl.sed.in	Mon May  3 17:29:05 1999
+++ intl/po2tbl.sed.in	Sun Aug 20 23:18:10 2000
@@ -1,4 +1,4 @@
 # po2tbl.sed - Convert Uniforum style .po file to lookup table for catgets
-# Copyright (C) 1995 Free Software Foundation, Inc.
+# Copyright 1995 Free Software Foundation, Inc.
 # Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995.
 #
--- ../binutils-000817/intl/textdomain.c	Mon May  3 17:29:05 1999
+++ intl/textdomain.c	Sun Aug 20 23:18:10 2000
@@ -1,4 +1,4 @@
 /* Implementation of the textdomain(3) function
-   Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
+   Copyright 1995, 1996, 1997 Free Software Foundation, Inc.
    Written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995.
 
--- ../binutils-000817/intl/xopen-msg.sed	Mon May  3 17:29:05 1999
+++ intl/xopen-msg.sed	Sun Aug 20 23:18:10 2000
@@ -1,4 +1,4 @@
 # po2msg.sed - Convert Uniforum style .po file to X/Open style .msg file
-# Copyright (C) 1995 Free Software Foundation, Inc.
+# Copyright 1995 Free Software Foundation, Inc.
 # Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995.
 #

# ld
2000-08-25  Rodney Brown  <RodneyBrown@mynd.com>

	* deffile.h deffilep.y: Standardize FSF Copyright statements.
	* emultempl/aix.em emultempl/armcoff.em: Likewise.
	* emultempl/armelf.em emultempl/armelf_oabi.em: Likewise.
	* emultempl/beos.em emultempl/elf32.em: Likewise.
	* emultempl/generic.em emultempl/gld960.em: Likewise.
	* emultempl/gld960c.em emultempl/hppaelf.em: Likewise.
	* emultempl/linux.em emultempl/lnk960.em: Likewise.
	* emultempl/m68kcoff.em emultempl/mipsecoff.em: Likewise.
	* emultempl/pe.em emultempl/sunos.em emultempl/vanilla.em: Likewise.
	* ld.1 ld.h ld.texinfo ldcref.c ldctor.c ldctor.h: Likewise.
	* ldemul.c ldemul.h ldexp.c ldexp.h ldfile.c ldfile.h: Likewise.
	* ldgram.c ldgram.y ldint.texinfo ldlang.c ldlang.h: Likewise.
	* ldlex.c ldlex.h ldlex.l ldmain.c ldmain.h ldmisc.c: Likewise.
	* ldmisc.h ldver.c ldver.h ldwrite.c lexsup.c: Likewise.
	* mpw-elfmips.c mpw-eppcmac.c mpw-esh.c mri.c mri.h: Likewise.
	* pe-dll.c pe-dll.h sysdep.h: Likewise.

--- ../binutils-000817/ld/deffile.h	Mon Sep 13 01:27:47 1999
+++ ld/deffile.h	Sun Aug 20 23:18:07 2000
@@ -1,4 +1,4 @@
 /* deffile.h - header for .DEF file parser
-   Copyright (C) 1998, 1999 Free Software Foundation, Inc.
+   Copyright 1998, 1999 Free Software Foundation, Inc.
    Written by DJ Delorie dj@cygnus.com
 
--- ../binutils-000817/ld/deffilep.y	Wed Jan  5 10:33:29 2000
+++ ld/deffilep.y	Sun Aug 20 23:18:07 2000
@@ -1,5 +1,5 @@
 %{ /* deffilep.y - parser for .def files */
 
-/*   Copyright (C) 1995, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
+/*   Copyright 1995, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
 
 This file is part of GNU Binutils.
--- ../binutils-000817/ld/emultempl/aix.em	Tue Jul 11 13:42:41 2000
+++ ld/emultempl/aix.em	Sun Aug 20 23:18:08 2000
@@ -5,5 +5,5 @@
 
 /* AIX emulation code for ${EMULATION_NAME}
-   Copyright (C) 1991, 93, 95, 96, 97, 98, 99, 2000
+   Copyright 1991, 1993, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
    Written by Steve Chamberlain <sac@cygnus.com>
--- ../binutils-000817/ld/emultempl/armcoff.em	Tue Jul 11 13:42:41 2000
+++ ld/emultempl/armcoff.em	Sun Aug 20 23:18:08 2000
@@ -5,5 +5,5 @@
 
 /* emulate the original gld for the given ${EMULATION_NAME}
-   Copyright (C) 1991, 93, 96, 97, 98, 99, 2000
+   Copyright 1991, 1993, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
    Written by Steve Chamberlain steve@cygnus.com
--- ../binutils-000817/ld/emultempl/armelf.em	Fri Jul 28 11:33:14 2000
+++ ld/emultempl/armelf.em	Sun Aug 20 23:18:08 2000
@@ -1,4 +1,4 @@
 # This shell script emits a C file. -*- C -*-
-#   Copyright (C) 1991, 93, 96, 97, 98, 99, 2000
+#   Copyright 1991, 1993, 1996, 1997, 1998, 1999, 2000
 #   Free Software Foundation, Inc.
 #
--- ../binutils-000817/ld/emultempl/armelf_oabi.em	Tue Jul 11 13:42:41 2000
+++ ld/emultempl/armelf_oabi.em	Sun Aug 20 23:18:08 2000
@@ -5,5 +5,5 @@
 
 /* emulate the original gld for the given ${EMULATION_NAME}
-   Copyright (C) 1991, 93, 96, 97, 98, 99, 2000
+   Copyright 1991, 1993, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
    Written by Steve Chamberlain steve@cygnus.com
--- ../binutils-000817/ld/emultempl/beos.em	Tue Jul 11 13:42:41 2000
+++ ld/emultempl/beos.em	Sun Aug 20 23:18:08 2000
@@ -3,5 +3,5 @@
 cat >e${EMULATION_NAME}.c <<EOF
 /* This file is part of GLD, the Gnu Linker.
-   Copyright 1995, 96, 97, 98, 99, 2000 Free Software Foundation, Inc.
+   Copyright 1995, 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
 
 This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/ld/emultempl/elf32.em	Wed Aug  9 10:51:42 2000
+++ ld/emultempl/elf32.em	Sun Aug 20 23:18:08 2000
@@ -8,5 +8,5 @@
 
 /* ${ELFSIZE} bit ELF emulation code for ${EMULATION_NAME}
-   Copyright (C) 1991, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1991, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
    Written by Steve Chamberlain <sac@cygnus.com>
--- ../binutils-000817/ld/emultempl/generic.em	Tue Jul 11 13:42:41 2000
+++ ld/emultempl/generic.em	Sun Aug 20 23:18:08 2000
@@ -5,5 +5,5 @@
 
 /* emulate the original gld for the given ${EMULATION_NAME}
-   Copyright (C) 1991, 93, 94, 95, 96, 99, 2000
+   Copyright 1991, 1993, 1994, 1995, 1996, 1999, 2000
    Free Software Foundation, Inc.
    Written by Steve Chamberlain steve@cygnus.com
--- ../binutils-000817/ld/emultempl/gld960.em	Tue Jul 11 13:42:41 2000
+++ ld/emultempl/gld960.em	Sun Aug 20 23:18:08 2000
@@ -2,5 +2,5 @@
 # It does some substitutions.
 cat >e${EMULATION_NAME}.c <<EOF
-/* Copyright (C) 1991, 93, 94, 95, 99, 2000 Free Software Foundation, Inc.
+/* Copyright 1991, 1993, 1994, 1995, 1999, 2000 Free Software Foundation, Inc.
 
 This file is part of GLD, the Gnu Linker.
--- ../binutils-000817/ld/emultempl/gld960c.em	Tue Jul 11 13:42:41 2000
+++ ld/emultempl/gld960c.em	Sun Aug 20 23:18:08 2000
@@ -2,5 +2,5 @@
 # It does some substitutions.
 cat >e${EMULATION_NAME}.c <<EOF
-/* Copyright (C) 1991, 93, 94, 95, 96, 99, 2000
+/* Copyright 1991, 1993, 1994, 1995, 1996, 1999, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/ld/emultempl/hppaelf.em	Fri Jul 28 11:33:14 2000
+++ ld/emultempl/hppaelf.em	Sun Aug 20 23:18:08 2000
@@ -1,4 +1,4 @@
 # This shell script emits a C file. -*- C -*-
-#   Copyright (C) 1991, 93, 94, 95, 97, 99, 2000
+#   Copyright 1991, 1993, 1994, 1995, 1997, 1999, 2000
 #   Free Software Foundation, Inc.
 #
--- ../binutils-000817/ld/emultempl/linux.em	Tue Jul 11 13:42:41 2000
+++ ld/emultempl/linux.em	Sun Aug 20 23:18:08 2000
@@ -5,5 +5,5 @@
 
 /* Linux a.out emulation code for ${EMULATION_NAME}
-   Copyright (C) 1991, 93, 94, 95, 96, 98, 99, 2000
+   Copyright 1991, 1993, 1994, 1995, 1996, 1998, 1999, 2000
    Free Software Foundation, Inc.
    Written by Steve Chamberlain <sac@cygnus.com>
--- ../binutils-000817/ld/emultempl/lnk960.em	Tue Jul 11 13:42:41 2000
+++ ld/emultempl/lnk960.em	Sun Aug 20 23:18:08 2000
@@ -3,5 +3,5 @@
 cat >e${EMULATION_NAME}.c <<EOF
 /* intel coff loader emulation specific stuff
-   Copyright (C) 1991, 93, 94, 95, 96, 99, 2000
+   Copyright 1991, 1993, 1994, 1995, 1996, 1999, 2000
    Free Software Foundation, Inc.
    Written by Steve Chamberlain steve@cygnus.com
--- ../binutils-000817/ld/emultempl/m68kcoff.em	Fri Jul 28 11:33:14 2000
+++ ld/emultempl/m68kcoff.em	Sun Aug 20 23:18:08 2000
@@ -5,5 +5,5 @@
 
 /* Handle embedded relocs for m68k.
-   Copyright (C) 2000 Free Software Foundation, Inc.
+   Copyright 2000 Free Software Foundation, Inc.
    Written by Michael Sokolov <msokolov@ivan.Harhan.ORG>, based on generic.em
    by Steve Chamberlain <steve@cygnus.com>, embedded relocs code based on
--- ../binutils-000817/ld/emultempl/mipsecoff.em	Tue Jul 11 13:42:41 2000
+++ ld/emultempl/mipsecoff.em	Sun Aug 20 23:18:08 2000
@@ -5,5 +5,5 @@
 
 /* Handle embedded relocs for MIPS.
-   Copyright 1994, 95, 97, 99, 2000 Free Software Foundation, Inc.
+   Copyright 1994, 1995, 1997, 1999, 2000 Free Software Foundation, Inc.
    Written by Ian Lance Taylor <ian@cygnus.com> based on generic.em.
 
--- ../binutils-000817/ld/emultempl/pe.em	Tue Jul 18 04:59:58 2000
+++ ld/emultempl/pe.em	Sun Aug 20 23:18:08 2000
@@ -5,5 +5,5 @@
 cat >>e${EMULATION_NAME}.c <<EOF
 /* This file is part of GLD, the Gnu Linker.
-   Copyright 1995, 96, 97, 98, 99, 2000 Free Software Foundation, Inc.
+   Copyright 1995, 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
 
 This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/ld/emultempl/sunos.em	Tue Jul 11 13:42:41 2000
+++ ld/emultempl/sunos.em	Sun Aug 20 23:18:08 2000
@@ -5,5 +5,5 @@
 
 /* SunOS emulation code for ${EMULATION_NAME}
-   Copyright (C) 1991, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1991, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
    Written by Steve Chamberlain <sac@cygnus.com>
--- ../binutils-000817/ld/emultempl/vanilla.em	Tue Jul 11 13:42:41 2000
+++ ld/emultempl/vanilla.em	Sun Aug 20 23:18:08 2000
@@ -3,5 +3,5 @@
 cat >e${EMULATION_NAME}.c <<EOF
 /* A vanilla emulation with no defaults
-   Copyright (C) 1991, 92, 93, 94, 2000 Free Software Foundation, Inc.
+   Copyright 1991, 1992, 1993, 1994, 2000 Free Software Foundation, Inc.
    Written by Steve Chamberlain steve@cygnus.com
 
--- ../binutils-000817/ld/ld.1	Tue May 23 07:58:40 2000
+++ ld/ld.1	Sun Aug 20 23:18:07 2000
@@ -1,3 +1,4 @@
-.\" Copyright (c) 1991, 92, 93, 94, 95, 96, 97, 98, 1999 Free Software Foundation
+.\" Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
+.\" Free Software Foundation
 .\" See section COPYING for conditions for redistribution
 .TH ld 1 "17 August 1992" "cygnus support" "GNU Development Tools"
@@ -1118,5 +1119,6 @@
 
 .SH COPYING
-Copyright (c) 1991, 92, 93, 94, 95, 96, 97, 1998 Free Software Foundation, Inc.
+Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998
+Free Software Foundation, Inc.
 .PP
 Permission is granted to make and distribute verbatim copies of
--- ../binutils-000817/ld/ld.h	Sat May 13 23:05:36 2000
+++ ld/ld.h	Sun Aug 20 23:18:07 2000
@@ -1,4 +1,4 @@
 /* ld.h -- general linker header file
-   Copyright (C) 1991, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1991, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/ld/ld.texinfo	Fri Jul 21 07:18:23 2000
+++ ld/ld.texinfo	Sun Aug 20 23:18:08 2000
@@ -19,5 +19,6 @@
 This file documents the @sc{gnu} linker LD version @value{VERSION}.
 
-Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98, 99, 2000 Free Software Foundation, Inc.
+Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
+Free Software Foundation, Inc.
 
 Permission is granted to make and distribute verbatim copies of
@@ -67,5 +68,6 @@
 
 @vskip 0pt plus 1filll
-Copyright @copyright{} 1991, 92, 93, 94, 95, 96, 97, 98, 1999 Free Software Foundation, Inc.
+Copyright @copyright{} 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
+Free Software Foundation, Inc.
 
 Permission is granted to make and distribute verbatim copies of
--- ../binutils-000817/ld/ldcref.c	Thu Jan 27 10:11:48 2000
+++ ld/ldcref.c	Sun Aug 20 23:18:08 2000
@@ -1,4 +1,4 @@
 /* ldcref.c -- output a cross reference table
-   Copyright (C) 1996, 97, 98, 99, 2000 Free Software Foundation, Inc.
+   Copyright 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
    Written by Ian Lance Taylor <ian@cygnus.com>
 
--- ../binutils-000817/ld/ldctor.c	Mon May  3 17:29:06 1999
+++ ld/ldctor.c	Sun Aug 20 23:18:08 2000
@@ -1,4 +1,4 @@
 /* ldctor.c -- constructor support routines
-   Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 1998
+   Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998
    Free Software Foundation, Inc.
    By Steve Chamberlain <sac@cygnus.com>
--- ../binutils-000817/ld/ldctor.h	Mon May  3 17:29:06 1999
+++ ld/ldctor.h	Sun Aug 20 23:18:08 2000
@@ -1,4 +1,4 @@
 /* ldctor.h - linker constructor support
-   Copyright 1991, 92, 93, 94, 95, 1998 Free Software Foundation, Inc.
+   Copyright 1991, 1992, 1993, 1994, 1995, 1998 Free Software Foundation, Inc.
    
 This file is part of GLD, the Gnu Linker.
--- ../binutils-000817/ld/ldemul.c	Tue Jul 11 13:42:41 2000
+++ ld/ldemul.c	Sun Aug 20 23:18:08 2000
@@ -1,4 +1,4 @@
 /* ldemul.c -- clearing house for ld emulation states
-   Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/ld/ldemul.h	Tue Jul 11 13:42:41 2000
+++ ld/ldemul.h	Sun Aug 20 23:18:08 2000
@@ -1,4 +1,5 @@
 /* ld-emul.h - Linker emulation header file
-   Copyright 1991, 92, 93, 94, 95, 96, 97, 1998, 2000 Free Software Foundation, Inc.
+   Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2000
+   Free Software Foundation, Inc.
 
    This file is part of GLD, the Gnu Linker.
--- ../binutils-000817/ld/ldexp.c	Fri Feb  4 05:24:46 2000
+++ ld/ldexp.c	Sun Aug 20 23:18:08 2000
@@ -1,4 +1,4 @@
 /* This module handles expression trees.
-   Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98, 1999
+   Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
    Free Software Foundation, Inc.
    Written by Steve Chamberlain of Cygnus Support (sac@cygnus.com).
--- ../binutils-000817/ld/ldexp.h	Mon May  3 17:29:06 1999
+++ ld/ldexp.h	Sun Aug 20 23:18:08 2000
@@ -1,4 +1,4 @@
 /* ldexp.h -
-   Copyright 1991, 92, 93, 94, 95, 1998 Free Software Foundation, Inc.
+   Copyright 1991, 1992, 1993, 1994, 1995, 1998 Free Software Foundation, Inc.
 
    This file is part of GLD, the Gnu Linker.
--- ../binutils-000817/ld/ldfile.c	Wed Jul 12 06:17:02 2000
+++ ld/ldfile.c	Sun Aug 20 23:18:08 2000
@@ -1,4 +1,4 @@
 /* Linker file opening and searching.
-   Copyright (C) 1991, 92, 93, 94, 95, 98, 99, 2000
+   Copyright 1991, 1992, 1993, 1994, 1995, 1998, 1999, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/ld/ldfile.h	Tue Jul 11 13:42:41 2000
+++ ld/ldfile.h	Sun Aug 20 23:18:08 2000
@@ -1,4 +1,4 @@
 /* ldfile.h -
-   Copyright 1991, 92, 93, 94, 95, 2000 Free Software Foundation, Inc.
+   Copyright 1991, 1992, 1993, 1994, 1995, 2000 Free Software Foundation, Inc.
 
    This file is part of GLD, the Gnu Linker.
--- ../binutils-000817/ld/ldgram.c	Thu Aug 17 22:40:08 2000
+++ ld/ldgram.c	Sun Aug 20 23:18:09 2000
@@ -926,5 +926,5 @@
 
 /* Skeleton output parser for bison,
-   Copyright (C) 1984, 1989, 1990 Free Software Foundation, Inc.
+   Copyright 1984, 1989, 1990 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/ld/ldgram.y	Tue Jul 11 13:42:41 2000
+++ ld/ldgram.y	Sun Aug 20 23:18:08 2000
@@ -1,4 +1,4 @@
 /* A YACC grammer to parse a superset of the AT&T linker scripting languaue.
-   Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
    Written by Steve Chamberlain of Cygnus Support (steve@cygnus.com).
--- ../binutils-000817/ld/ldint.texinfo	Mon May  3 17:29:06 1999
+++ ld/ldint.texinfo	Sun Aug 20 23:18:08 2000
@@ -13,5 +13,6 @@
 This file documents the internals of the GNU linker ld.
 
-Copyright (C) 1992, 93, 94, 95, 96, 97, 1998 Free Software Foundation, Inc.
+Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1998
+Free Software Foundation, Inc.
 Contributed by Cygnus Support.
 
@@ -53,5 +54,5 @@
 
 @vskip 0pt plus 1filll
-Copyright @copyright{} 1992, 93, 94, 95, 96, 97, 1998
+Copyright @copyright{} 1992, 1993, 1994, 1995, 1996, 1997, 1998
 Free Software Foundation, Inc.
 
--- ../binutils-000817/ld/ldlang.c	Tue Jul 11 13:42:41 2000
+++ ld/ldlang.c	Sun Aug 20 23:18:08 2000
@@ -1,4 +1,4 @@
 /* Linker command language support.
-   Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/ld/ldlang.h	Tue Jul 11 13:42:41 2000
+++ ld/ldlang.h	Sun Aug 20 23:18:08 2000
@@ -1,4 +1,4 @@
 /* ldlang.h - linker command language support
-   Copyright 1991, 92, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
    
--- ../binutils-000817/ld/ldlex.c	Thu Aug 17 22:40:08 2000
+++ ld/ldlex.c	Sun Aug 20 23:18:09 2000
@@ -1165,5 +1165,5 @@
 #line 2 "ldlex.l"
 
-/* Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98, 1999
+/* Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
    Free Software Foundation, Inc.
 
--- ../binutils-000817/ld/ldlex.h	Mon May  3 17:29:06 1999
+++ ld/ldlex.h	Sun Aug 20 23:18:08 2000
@@ -1,4 +1,4 @@
 /* ldlex.h -
-   Copyright 1991, 92, 93, 94, 95, 1997 Free Software Foundation, Inc.
+   Copyright 1991, 1992, 1993, 1994, 1995, 1997 Free Software Foundation, Inc.
 
    This file is part of GLD, the Gnu Linker.
--- ../binutils-000817/ld/ldlex.l	Tue Jun  6 02:16:31 2000
+++ ld/ldlex.l	Sun Aug 20 23:18:08 2000
@@ -1,5 +1,5 @@
 %{
 
-/* Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98, 1999
+/* Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
    Free Software Foundation, Inc.
 
--- ../binutils-000817/ld/ldmain.c	Fri Jul 21 07:18:23 2000
+++ ld/ldmain.c	Sun Aug 20 23:18:08 2000
@@ -1,4 +1,4 @@
 /* Main program of GNU linker.
-   Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
    Written by Steve Chamberlain steve@cygnus.com
--- ../binutils-000817/ld/ldmain.h	Mon May  3 17:29:07 1999
+++ ld/ldmain.h	Sun Aug 20 23:18:08 2000
@@ -1,4 +1,5 @@
 /* ldmain.h -
-   Copyright 1991, 92, 93, 94, 95, 96, 1999 Free Software Foundation, Inc.
+   Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1999
+   Free Software Foundation, Inc.
 
    This file is part of GLD, the Gnu Linker.
--- ../binutils-000817/ld/ldmisc.c	Thu Jan 27 10:11:48 2000
+++ ld/ldmisc.c	Sun Aug 20 23:18:08 2000
@@ -1,4 +1,4 @@
 /* ldmisc.c
-   Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
    Written by Steve Chamberlain of Cygnus Support.
--- ../binutils-000817/ld/ldmisc.h	Mon May  3 17:29:07 1999
+++ ld/ldmisc.h	Sun Aug 20 23:18:08 2000
@@ -1,4 +1,4 @@
 /* ldmisc.h -
-   Copyright (C) 1991, 92, 93, 94, 95, 1996 Free Software Foundation, Inc.
+   Copyright 1991, 1992, 1993, 1994, 1995, 1996 Free Software Foundation, Inc.
 
    This file is part of GLD, the Gnu Linker.
--- ../binutils-000817/ld/ldver.c	Tue Jul 11 13:42:41 2000
+++ ld/ldver.c	Sun Aug 20 23:18:08 2000
@@ -1,4 +1,4 @@
 /* ldver.c -- Print linker version.
-   Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 2000
+   Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/ld/ldver.h	Mon May  3 17:29:07 1999
+++ ld/ldver.h	Sun Aug 20 23:18:08 2000
@@ -1,4 +1,4 @@
 /* ldver.h -- Header file for ldver.c.
-   Copyright (C) 1991, 92, 93, 95, 1996 Free Software Foundation, Inc.
+   Copyright 1991, 1992, 1993, 1995, 1996 Free Software Foundation, Inc.
 
 This file is part of GLD, the Gnu Linker.
--- ../binutils-000817/ld/ldwrite.c	Tue Jul 11 03:15:11 2000
+++ ld/ldwrite.c	Sun Aug 20 23:18:08 2000
@@ -1,4 +1,4 @@
 /* ldwrite.c -- write out the linked file
-   Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 1998
+   Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998
    Free Software Foundation, Inc.
    Written by Steve Chamberlain sac@cygnus.com
--- ../binutils-000817/ld/lexsup.c	Fri Jul 21 04:02:55 2000
+++ ld/lexsup.c	Sun Aug 20 23:18:08 2000
@@ -1,4 +1,4 @@
 /* Parse options for the GNU linker.
-   Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/ld/mpw-elfmips.c	Tue Jul 11 13:42:41 2000
+++ ld/mpw-elfmips.c	Sun Aug 20 23:18:08 2000
@@ -2,5 +2,5 @@
 
 /* 32 bit ELF emulation code for elf32ebmip
-   Copyright (C) 1991, 93, 94, 95, 96, 98, 2000
+   Copyright 1991, 1993, 1994, 1995, 1996, 1998, 2000
    Free Software Foundation, Inc.
    Written by Steve Chamberlain <sac@cygnus.com>
--- ../binutils-000817/ld/mpw-eppcmac.c	Tue Jul 11 13:42:41 2000
+++ ld/mpw-eppcmac.c	Sun Aug 20 23:18:08 2000
@@ -2,5 +2,5 @@
 
 /* AIX emulation code for ppcmacos
-   Copyright (C) 1991, 93, 95, 98, 2000 Free Software Foundation, Inc.
+   Copyright 1991, 1993, 1995, 1998, 2000 Free Software Foundation, Inc.
    Written by Steve Chamberlain <sac@cygnus.com>
    AIX support by Ian Lance Taylor <ian@cygnus.com>
--- ../binutils-000817/ld/mpw-esh.c	Tue Jul 11 13:42:41 2000
+++ ld/mpw-esh.c	Sun Aug 20 23:18:08 2000
@@ -2,5 +2,5 @@
 
 /* emulate the original gld for the given sh
-   Copyright (C) 1991, 1993, 2000 Free Software Foundation, Inc.
+   Copyright 1991, 1993, 2000 Free Software Foundation, Inc.
    Written by Steve Chamberlain steve@cygnus.com
 
--- ../binutils-000817/ld/mri.c	Thu Feb 17 05:53:32 2000
+++ ld/mri.c	Sun Aug 20 23:18:08 2000
@@ -1,4 +1,5 @@
 /* mri.c -- handle MRI style linker scripts
-   Copyright (C) 1991, 92, 93, 94, 95, 96, 1997, 1998 Free Software Foundation, Inc.
+   Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998
+   Free Software Foundation, Inc.
 
 This file is part of GLD, the Gnu Linker.
--- ../binutils-000817/ld/mri.h	Mon May  3 17:29:07 1999
+++ ld/mri.h	Sun Aug 20 23:18:08 2000
@@ -1,4 +1,4 @@
 /* mri.h -- header file for MRI scripting functions
-   Copyright 1993, 95, 1996 Free Software Foundation, Inc.
+   Copyright 1993, 1995, 1996 Free Software Foundation, Inc.
 
 This file is part of GLD, the Gnu Linker.
--- ../binutils-000817/ld/pe-dll.c	Wed Jul 19 10:04:04 2000
+++ ld/pe-dll.c	Sun Aug 20 23:18:08 2000
@@ -1,4 +1,4 @@
 /* Routines to help build PEI-format DLLs (Win32 etc)
-   Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1998, 1999, 2000 Free Software Foundation, Inc.
    Written by DJ Delorie <dj@cygnus.com>
 
--- ../binutils-000817/ld/pe-dll.h	Wed Jan  5 10:44:03 2000
+++ ld/pe-dll.h	Sun Aug 20 23:18:08 2000
@@ -1,4 +1,4 @@
 /* pe-dll.h: Header file for routines used to build Windows DLLs.
-   Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1999, 2000 Free Software Foundation, Inc.
 
    This file is part of GLD, the Gnu Linker.
--- ../binutils-000817/ld/sysdep.h	Mon May  3 17:29:07 1999
+++ ld/sysdep.h	Sun Aug 20 23:18:08 2000
@@ -1,4 +1,4 @@
 /* sysdep.h -- handle host dependencies for the GNU linker
-   Copyright (C) 1995, 96, 1997 Free Software Foundation, Inc.
+   Copyright 1995, 1996, 1997 Free Software Foundation, Inc.
 
    This file is part of GLD, the Gnu Linker.

# ld/testsuite
2000-08-25  Rodney Brown  <RodneyBrown@mynd.com>

	* config/default.exp: Standardize FSF Copyright statements.
	* ld-bootstrap/bootstrap.exp: Likewise.
	* ld-cdtest/cdtest.exp: Likewise.
	* ld-checks/checks.exp: Likewise.
	* ld-elfvers/vers.exp: Likewise.
	* ld-elfvsb/elfvsb.exp: Likewise.
	* ld-empic/empic.exp: Likewise.
	* ld-selective/selective.exp: Likewise.
	* ld-sh/sh.exp: Likewise.
	* ld-shared/shared.exp: Likewise.
	* ld-undefined/undefined.exp: Likewise.
	* ld-versados/versados.exp: Likewise.

--- ../binutils-000817/ld/testsuite/config/default.exp	Mon May  3 17:29:08 1999
+++ ld/testsuite/config/default.exp	Sun Aug 20 23:18:09 2000
@@ -1,4 +1,4 @@
 # Basic expect script for LD Regression Tests
-#   Copyright (C) 1993, 94, 95, 97, 98, 1999 Free Software Foundation
+#   Copyright 1993, 1994, 1995, 1997, 1998, 1999 Free Software Foundation
 #
 # This file is free software; you can redistribute it and/or modify
--- ../binutils-000817/ld/testsuite/ld-bootstrap/bootstrap.exp	Fri Aug  4 04:31:50 2000
+++ ld/testsuite/ld-bootstrap/bootstrap.exp	Sun Aug 20 23:18:09 2000
@@ -1,4 +1,4 @@
 # Expect script for LD Bootstrap Tests
-#   Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998 Free Software Foundation
+#   Copyright 1993, 1994, 1995, 1996, 1997, 1998 Free Software Foundation
 #
 # This file is free software; you can redistribute it and/or modify
--- ../binutils-000817/ld/testsuite/ld-cdtest/cdtest.exp	Mon May  3 17:29:08 1999
+++ ld/testsuite/ld-cdtest/cdtest.exp	Sun Aug 20 23:18:09 2000
@@ -1,4 +1,4 @@
 # Expect script for LD cdtest Tests
-#   Copyright (C) 1993,1994,1995, 1997 Free Software Foundation
+#   Copyright 1993, 1994, 1995, 1997 Free Software Foundation
 #
 # This file is free software; you can redistribute it and/or modify
--- ../binutils-000817/ld/testsuite/ld-checks/checks.exp	Sun Jun 13 08:40:18 1999
+++ ld/testsuite/ld-checks/checks.exp	Sun Aug 20 23:18:09 2000
@@ -1,4 +1,4 @@
 # Expect script for LD section checks tests
-#   Copyright (C) 1999 Free Software Foundation
+#   Copyright 1999 Free Software Foundation
 #
 # This file is free software; you can redistribute it and/or modify
--- ../binutils-000817/ld/testsuite/ld-elfvers/vers.exp	Tue Aug 10 00:49:32 1999
+++ ld/testsuite/ld-elfvers/vers.exp	Sun Aug 20 23:18:09 2000
@@ -1,4 +1,4 @@
 # Expect script for ld-version tests
-#   Copyright (C) 1997, 1998, 1999 Free Software Foundation
+#   Copyright 1997, 1998, 1999 Free Software Foundation
 #
 # This file is free software; you can redistribute it and/or modify
--- ../binutils-000817/ld/testsuite/ld-elfvsb/elfvsb.exp	Tue Jul 25 01:40:20 2000
+++ ld/testsuite/ld-elfvsb/elfvsb.exp	Sun Aug 20 23:18:09 2000
@@ -1,4 +1,4 @@
 # Expect script for ld-visibility tests
-#   Copyright (C) 2000 Free Software Foundation
+#   Copyright 2000 Free Software Foundation
 #
 # This file is free software; you can redistribute it and/or modify
--- ../binutils-000817/ld/testsuite/ld-empic/empic.exp	Mon May  3 17:29:08 1999
+++ ld/testsuite/ld-empic/empic.exp	Sun Aug 20 23:18:09 2000
@@ -1,4 +1,4 @@
 # Expect script for ld-empic tests
-#   Copyright (C) 1994,1995, 1996, 1997 Free Software Foundation
+#   Copyright 1994, 1995, 1996, 1997 Free Software Foundation
 #
 # This file is free software; you can redistribute it and/or modify
--- ../binutils-000817/ld/testsuite/ld-selective/selective.exp	Tue Jul 11 03:02:16 2000
+++ ld/testsuite/ld-selective/selective.exp	Sun Aug 20 23:18:09 2000
@@ -1,4 +1,4 @@
 # Expect script for LD selective linking tests
-#   Copyright (C) 1998, 1999 Free Software Foundation
+#   Copyright 1998, 1999 Free Software Foundation
 #
 # This file is free software; you can redistribute it and/or modify
--- ../binutils-000817/ld/testsuite/ld-sh/sh.exp	Mon May  3 17:29:09 1999
+++ ld/testsuite/ld-sh/sh.exp	Sun Aug 20 23:18:09 2000
@@ -1,4 +1,4 @@
 # Expect script for ld-sh tests
-#   Copyright (C) 1995, 1996, 1997 Free Software Foundation
+#   Copyright 1995, 1996, 1997 Free Software Foundation
 #
 # This file is free software; you can redistribute it and/or modify
--- ../binutils-000817/ld/testsuite/ld-shared/shared.exp	Sat Sep 18 10:44:47 1999
+++ ld/testsuite/ld-shared/shared.exp	Sun Aug 20 23:18:09 2000
@@ -1,4 +1,4 @@
 # Expect script for ld-shared tests
-#   Copyright (C) 1994, 1995, 1996, 1997, 1998 Free Software Foundation
+#   Copyright 1994, 1995, 1996, 1997, 1998 Free Software Foundation
 #
 # This file is free software; you can redistribute it and/or modify
--- ../binutils-000817/ld/testsuite/ld-undefined/undefined.exp	Fri Jul 16 03:02:34 1999
+++ ld/testsuite/ld-undefined/undefined.exp	Sun Aug 20 23:18:09 2000
@@ -2,5 +2,5 @@
 # By Ian Lance Taylor, Cygnus Support
 #
-#   Copyright (C) 1995, 1996, 1997 Free Software Foundation
+#   Copyright 1995, 1996, 1997 Free Software Foundation
 #
 # This file is free software; you can redistribute it and/or modify
--- ../binutils-000817/ld/testsuite/ld-versados/versados.exp	Mon May  3 17:29:09 1999
+++ ld/testsuite/ld-versados/versados.exp	Sun Aug 20 23:18:09 2000
@@ -1,4 +1,4 @@
 # Expect script for ld-versados tests
-#   Copyright (C) 1995, 1996, 1997 Free Software Foundation
+#   Copyright 1995, 1996, 1997 Free Software Foundation
 #
 # This file is free software; you can redistribute it and/or modify

# libiberty
2000-08-25  Rodney Brown  <RodneyBrown@mynd.com>

	* Makefile.in: Standardize FSF Copyright statements.
	* argv.c asprintf.c choose-temp.c clock.c: Likewise.
	* concat.c cplus-dem.c dyn-string.c fdmatch.c: Likewise.
	* floatformat.c fnmatch.c getopt.c getopt1.c getruntime.c: Likewise.
	* hashtab.c hex.c mkstemps.c mpw.c obstack.c partition.c: Likewise.
	* pexecute.c putenv.c setenv.c sort.c spaces.c: Likewise.
	* splay-tree.c strtod.c: Likewise.
	* testsuite/Makefile.in: Likewise.
	* vasprintf.c vfprintf.c vsprintf.c xexit.c xmalloc.c: Likewise.

--- ../binutils-000817/libiberty/Makefile.in	Thu Jul 27 09:24:05 2000
+++ libiberty/Makefile.in	Sun Aug 20 23:18:03 2000
@@ -1,5 +1,5 @@
 #
 # Makefile
-#   Copyright (C) 1990, 91-99, 2000
+#   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
 #   Free Software Foundation
 #
--- ../binutils-000817/libiberty/argv.c	Thu Jul 15 03:32:01 1999
+++ libiberty/argv.c	Sun Aug 20 23:18:03 2000
@@ -1,4 +1,4 @@
 /* Create and destroy argument vectors (argv's)
-   Copyright (C) 1992 Free Software Foundation, Inc.
+   Copyright 1992 Free Software Foundation, Inc.
    Written by Fred Fish @ Cygnus Support
 
--- ../binutils-000817/libiberty/asprintf.c	Mon May  3 17:28:53 1999
+++ libiberty/asprintf.c	Sun Aug 20 23:18:03 2000
@@ -1,5 +1,5 @@
 /* Like sprintf but provides a pointer to malloc'd storage, which must
    be freed by the caller.
-   Copyright (C) 1997 Free Software Foundation, Inc.
+   Copyright 1997 Free Software Foundation, Inc.
    Contributed by Cygnus Solutions.
 
--- ../binutils-000817/libiberty/choose-temp.c	Fri Jun 16 06:56:24 2000
+++ libiberty/choose-temp.c	Sun Aug 20 23:18:03 2000
@@ -1,4 +1,4 @@
 /* Utility to pick a temporary filename prefix.
-   Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
+   Copyright 1996, 1997, 1998 Free Software Foundation, Inc.
 
 This file is part of the libiberty library.
--- ../binutils-000817/libiberty/clock.c	Mon May  3 17:28:53 1999
+++ libiberty/clock.c	Sun Aug 20 23:18:03 2000
@@ -1,4 +1,4 @@
 /* ANSI-compatible clock function.
-   Copyright (C) 1994, 1995, 1999 Free Software Foundation, Inc.
+   Copyright 1994, 1995, 1999 Free Software Foundation, Inc.
 
 This file is part of the libiberty library.  This library is free
--- ../binutils-000817/libiberty/concat.c	Mon May  3 17:28:53 1999
+++ libiberty/concat.c	Sun Aug 20 23:18:03 2000
@@ -1,4 +1,4 @@
 /* Concatenate variable number of strings.
-   Copyright (C) 1991, 1994 Free Software Foundation, Inc.
+   Copyright 1991, 1994 Free Software Foundation, Inc.
    Written by Fred Fish @ Cygnus Support
 
--- ../binutils-000817/libiberty/cplus-dem.c	Tue Jul 25 05:14:18 2000
+++ libiberty/cplus-dem.c	Sun Aug 20 23:18:03 2000
@@ -1,4 +1,5 @@
 /* Demangler for GNU C++
-   Copyright 1989, 91, 94, 95, 96, 97, 98, 1999 Free Software Foundation, Inc.
+   Copyright 1989, 1991, 1994, 1995, 1996, 1997, 1998, 1999
+   Free Software Foundation, Inc.
    Written by James Clark (jjc@jclark.uucp)
    Rewritten by Fred Fish (fnf@cygnus.com) for ARM and Lucid demangling
--- ../binutils-000817/libiberty/dyn-string.c	Fri Jul 21 04:56:16 2000
+++ libiberty/dyn-string.c	Sun Aug 20 23:18:03 2000
@@ -1,4 +1,4 @@
 /* An abstract string datatype.
-   Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1998, 1999, 2000 Free Software Foundation, Inc.
    Contributed by Mark Mitchell (mark@markmitchell.com).
 
--- ../binutils-000817/libiberty/fdmatch.c	Mon May  3 17:28:54 1999
+++ libiberty/fdmatch.c	Sun Aug 20 23:18:03 2000
@@ -1,4 +1,4 @@
 /* Compare two open file descriptors to see if they refer to the same file.
-   Copyright (C) 1991 Free Software Foundation, Inc.
+   Copyright 1991 Free Software Foundation, Inc.
 
 This file is part of the libiberty library.
--- ../binutils-000817/libiberty/floatformat.c	Wed May 31 20:54:59 2000
+++ libiberty/floatformat.c	Sun Aug 20 23:18:03 2000
@@ -1,4 +1,4 @@
 /* IEEE floating point support routines, for GDB, the GNU Debugger.
-   Copyright (C) 1991, 1994, 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1991, 1994, 1999, 2000 Free Software Foundation, Inc.
 
 This file is part of GDB.
--- ../binutils-000817/libiberty/fnmatch.c	Mon May  3 17:28:54 1999
+++ libiberty/fnmatch.c	Sun Aug 20 23:18:03 2000
@@ -1,3 +1,3 @@
-/* Copyright (C) 1991, 1992, 1993 Free Software Foundation, Inc.
+/* Copyright 1991, 1992, 1993 Free Software Foundation, Inc.
 
 NOTE: The canonical source of this file is maintained with the GNU C Library.
--- ../binutils-000817/libiberty/getopt.c	Mon May  3 17:28:54 1999
+++ libiberty/getopt.c	Sun Aug 20 23:21:07 2000
@@ -4,6 +4,6 @@
    before changing it!
 
-   Copyright (C) 1987, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98
-   	Free Software Foundation, Inc.
+   Copyright 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
+   1998 Free Software Foundation, Inc.
 
    NOTE: The canonical source of this file is maintained with the GNU C Library.
--- ../binutils-000817/libiberty/getopt1.c	Mon May  3 17:28:54 1999
+++ libiberty/getopt1.c	Sun Aug 20 23:18:03 2000
@@ -1,4 +1,4 @@
 /* getopt_long and getopt_long_only entry points for GNU getopt.
-   Copyright (C) 1987,88,89,90,91,92,93,94,96,97,98
+   Copyright 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1996, 1997, 1998
      Free Software Foundation, Inc.
 
--- ../binutils-000817/libiberty/getruntime.c	Mon Jul 24 05:20:18 2000
+++ libiberty/getruntime.c	Sun Aug 20 23:18:03 2000
@@ -1,4 +1,4 @@
 /* Return time used so far, in microseconds.
-   Copyright (C) 1994, 1999 Free Software Foundation, Inc.
+   Copyright 1994, 1999 Free Software Foundation, Inc.
 
 This file is part of the libiberty library.
--- ../binutils-000817/libiberty/hashtab.c	Fri Jun 16 06:56:25 2000
+++ libiberty/hashtab.c	Sun Aug 20 23:18:03 2000
@@ -1,4 +1,4 @@
 /* An expandable hash tables datatype.  
-   Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1999, 2000 Free Software Foundation, Inc.
    Contributed by Vladimir Makarov (vmakarov@cygnus.com).
 
--- ../binutils-000817/libiberty/hex.c	Mon May  3 17:28:54 1999
+++ libiberty/hex.c	Sun Aug 20 23:18:03 2000
@@ -1,4 +1,4 @@
 /* Hex character manipulation support.
-   Copyright (C) 1995 Free Software Foundation, Inc.
+   Copyright 1995 Free Software Foundation, Inc.
 
 This file is part of the libiberty library.
--- ../binutils-000817/libiberty/mkstemps.c	Mon Jul 24 01:58:11 2000
+++ libiberty/mkstemps.c	Sun Aug 20 23:18:03 2000
@@ -1,3 +1,3 @@
-/* Copyright (C) 1991, 1992, 1996, 1998 Free Software Foundation, Inc.
+/* Copyright 1991, 1992, 1996, 1998 Free Software Foundation, Inc.
    This file is derived from mkstemp.c from the GNU C Library.
 
--- ../binutils-000817/libiberty/mpw.c	Mon May  3 17:28:54 1999
+++ libiberty/mpw.c	Sun Aug 20 23:18:03 2000
@@ -1,4 +1,4 @@
 /* MPW-Unix compatibility library.
-   Copyright (C) 1993, 1994, 1995, 1996 Free Software Foundation, Inc.
+   Copyright 1993, 1994, 1995, 1996 Free Software Foundation, Inc.
 
 This file is part of the libiberty library.
--- ../binutils-000817/libiberty/obstack.c	Mon May  3 17:28:54 1999
+++ libiberty/obstack.c	Sun Aug 20 23:18:03 2000
@@ -1,4 +1,5 @@
 /* obstack.c - subroutines used implicitly by object stack macros
-   Copyright (C) 1988,89,90,91,92,93,94,96,97 Free Software Foundation, Inc.
+   Copyright 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1996, 1997
+   Free Software Foundation, Inc.
 
 
--- ../binutils-000817/libiberty/partition.c	Fri Jun 16 06:56:25 2000
+++ libiberty/partition.c	Sun Aug 20 23:18:03 2000
@@ -1,4 +1,4 @@
 /* List implentation of a partition of consecutive integers.
-   Copyright (C) 2000 Free Software Foundation, Inc.
+   Copyright 2000 Free Software Foundation, Inc.
    Contributed by CodeSourcery, LLC.
 
--- ../binutils-000817/libiberty/pexecute.c	Thu Jul 27 11:49:21 2000
+++ libiberty/pexecute.c	Sun Aug 20 23:18:03 2000
@@ -1,5 +1,5 @@
 /* Utilities to execute a program in a subprocess (possibly linked by pipes
    with other subprocesses), and wait for it.
-   Copyright (C) 1996-2000 Free Software Foundation, Inc.
+   Copyright 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
 
 This file is part of the libiberty library.
--- ../binutils-000817/libiberty/putenv.c	Wed Feb 23 02:59:20 2000
+++ libiberty/putenv.c	Sun Aug 20 23:18:03 2000
@@ -1,3 +1,3 @@
-/* Copyright (C) 1991, 1994, 1995, 1996 Free Software Foundation, Inc.
+/* Copyright 1991, 1994, 1995, 1996 Free Software Foundation, Inc.
    This file based on putenv.c in the GNU C Library.
 
--- ../binutils-000817/libiberty/setenv.c	Fri Jun 16 06:56:25 2000
+++ libiberty/setenv.c	Sun Aug 20 23:18:03 2000
@@ -1,3 +1,3 @@
-/* Copyright (C) 1992, 1995, 1996, 1997 Free Software Foundation, Inc.
+/* Copyright 1992, 1995, 1996, 1997 Free Software Foundation, Inc.
    This file based on setenv.c in the GNU C Library.
 
--- ../binutils-000817/libiberty/sort.c	Mon Jul 24 05:20:18 2000
+++ libiberty/sort.c	Sun Aug 20 23:18:03 2000
@@ -1,4 +1,4 @@
 /* Sorting algorithms.
-   Copyright (C) 2000 Free Software Foundation, Inc.
+   Copyright 2000 Free Software Foundation, Inc.
    Contributed by Mark Mitchell <mark@codesourcery.com>.
 
--- ../binutils-000817/libiberty/spaces.c	Mon May  3 17:28:54 1999
+++ libiberty/spaces.c	Sun Aug 20 23:18:03 2000
@@ -1,4 +1,4 @@
 /* Allocate memory region filled with spaces.
-   Copyright (C) 1991 Free Software Foundation, Inc.
+   Copyright 1991 Free Software Foundation, Inc.
 
 This file is part of the libiberty library.
--- ../binutils-000817/libiberty/splay-tree.c	Thu Apr  6 10:16:01 2000
+++ libiberty/splay-tree.c	Sun Aug 20 23:18:03 2000
@@ -1,4 +1,4 @@
 /* A splay-tree datatype.  
-   Copyright (C) 1998, 1999 Free Software Foundation, Inc.
+   Copyright 1998, 1999 Free Software Foundation, Inc.
    Contributed by Mark Mitchell (mark@markmitchell.com).
 
--- ../binutils-000817/libiberty/strtod.c	Mon May  3 17:28:54 1999
+++ libiberty/strtod.c	Sun Aug 20 23:18:03 2000
@@ -1,4 +1,4 @@
 /* Implementation of strtod for systems with atof.
-   Copyright (C) 1991, 1995 Free Software Foundation, Inc.
+   Copyright 1991, 1995 Free Software Foundation, Inc.
 
 This file is part of the libiberty library.  This library is free
--- ../binutils-000817/libiberty/testsuite/Makefile.in	Wed Feb 23 02:59:20 2000
+++ libiberty/testsuite/Makefile.in	Mon Aug 21 00:11:38 2000
@@ -1,6 +1,5 @@
 #
 # Makefile
-#   Copyright (C) 1999
-#   Free Software Foundation
+#   Copyright 1999 Free Software Foundation
 #
 # This file is part of the libiberty library.
--- ../binutils-000817/libiberty/vasprintf.c	Tue Dec 28 14:10:39 1999
+++ libiberty/vasprintf.c	Sun Aug 20 23:18:03 2000
@@ -1,5 +1,5 @@
 /* Like vsprintf but provides a pointer to malloc'd storage, which must
    be freed by the caller.
-   Copyright (C) 1994 Free Software Foundation, Inc.
+   Copyright 1994 Free Software Foundation, Inc.
 
 This file is part of the libiberty library.
--- ../binutils-000817/libiberty/vfprintf.c	Mon May  3 17:28:54 1999
+++ libiberty/vfprintf.c	Sun Aug 20 23:18:03 2000
@@ -1,5 +1,5 @@
 /* Provide a version vfprintf in terms of _doprnt.
    By Kaveh Ghazi  (ghazi@caip.rutgers.edu)  3/29/98
-   Copyright (C) 1998 Free Software Foundation, Inc.
+   Copyright 1998 Free Software Foundation, Inc.
  */
 
--- ../binutils-000817/libiberty/vsprintf.c	Mon May  3 17:28:54 1999
+++ libiberty/vsprintf.c	Sun Aug 20 23:18:04 2000
@@ -4,5 +4,5 @@
    Written by Per Bothner of Cygnus Support.
    Based on libg++'s "form" (written by Doug Lea; dl@rocky.oswego.edu).
-   Copyright (C) 1991, 1995 Free Software Foundation, Inc.
+   Copyright 1991, 1995 Free Software Foundation, Inc.
 
 This file is part of the libiberty library.  This library is free
--- ../binutils-000817/libiberty/xexit.c	Tue May 30 06:45:32 2000
+++ libiberty/xexit.c	Sun Aug 20 23:18:04 2000
@@ -1,4 +1,4 @@
 /* xexit.c -- Run any exit handlers, then exit.
-   Copyright (C) 1994, 95, 1997 Free Software Foundation, Inc.
+   Copyright 1994, 1995, 1997 Free Software Foundation, Inc.
 
 This file is part of the libiberty library.
--- ../binutils-000817/libiberty/xmalloc.c	Fri Jun 16 06:56:25 2000
+++ libiberty/xmalloc.c	Sun Aug 20 23:18:04 2000
@@ -1,4 +1,4 @@
 /* memory allocation routines with error checking.
-   Copyright 1989, 90, 91, 92, 93, 94 Free Software Foundation, Inc.
+   Copyright 1989, 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
    
 This file is part of the libiberty library.

# opcodes
2000-08-25  Rodney Brown  <RodneyBrown@mynd.com>

	* a29k-dis.c alpha-opc.c: Standardize FSF Copyright statements.
	* arc-dis.c arc-opc.c arm-dis.c: Likewise.
	* avr-dis.c cgen-asm.c cgen-asm.in cgen-dis.c cgen-dis.in: Likewise.
	* cgen-ibld.in cgen-opc.c cris-dis.c cris-opc.c: Likewise.
	* d10v-dis.c d30v-dis.c d30v-opc.c dis-buf.c: Likewise.
	* disassemble.c fr30-asm.c fr30-desc.c fr30-desc.h: Likewise.
	* fr30-dis.c fr30-ibld.c fr30-opc.c fr30-opc.h: Likewise.
	* h8300-dis.c h8500-dis.c hppa-dis.c i386-dis.c: Likewise.
	* i960-dis.c ia64-asmtab.h ia64-dis.c ia64-gen.c: Likewise.
	* ia64-opc-a.c ia64-opc-b.c ia64-opc-f.c ia64-opc-i.c: Likewise.
	* ia64-opc-m.c ia64-opc-x.c ia64-opc.c ia64-opc.h: Likewise.
	* m10200-dis.c m10200-opc.c m10300-dis.c m10300-opc.c: Likewise.
	* m32r-asm.c m32r-desc.c m32r-desc.h m32r-dis.c: Likewise.
	* m32r-ibld.c m32r-opc.c m32r-opc.h m32r-opinst.c: Likewise.
	* m68hc11-dis.c m68k-dis.c m68k-opc.c m88k-dis.c: Likewise.
	* mcore-dis.c mcore-opc.h mips-dis.c ns32k-dis.c opintl.h: Likewise.
	* pj-dis.c pj-opc.c ppc-opc.c sh-dis.c sh-opc.h: Likewise.
	* sparc-dis.c sparc-opc.c sysdep.h tic30-dis.c: Likewise.
	* tic54x-dis.c tic54x-opc.c v850-dis.c v850-opc.c: Likewise.
	* vax-dis.c w65-dis.c: Likewise.

--- ../binutils-000817/opcodes/a29k-dis.c	Fri Apr 14 14:16:58 2000
+++ opcodes/a29k-dis.c	Sun Aug 20 23:18:04 2000
@@ -1,4 +1,4 @@
 /* Instruction printing code for the AMD 29000
-   Copyright (C) 1990, 93, 94, 95, 1998 Free Software Foundation, Inc.
+   Copyright 1990, 1993, 1994, 1995, 1998 Free Software Foundation, Inc.
    Contributed by Cygnus Support.  Written by Jim Kingdon.
 
--- ../binutils-000817/opcodes/alpha-opc.c	Fri Apr 14 14:16:58 2000
+++ opcodes/alpha-opc.c	Sun Aug 20 23:18:04 2000
@@ -1,4 +1,4 @@
 /* alpha-opc.c -- Alpha AXP opcode list
-   Copyright (c) 1996, 1998, 1999 Free Software Foundation, Inc.
+   Copyright 1996, 1998, 1999 Free Software Foundation, Inc.
    Contributed by Richard Henderson <rth@cygnus.com>,
    patterned after the PPC opcode handling written by Ian Lance Taylor.
--- ../binutils-000817/opcodes/arc-dis.c	Fri Apr 14 14:16:58 2000
+++ opcodes/arc-dis.c	Sun Aug 20 23:18:04 2000
@@ -1,4 +1,4 @@
 /* Instruction printing code for the ARC.
-   Copyright (C) 1994, 1995, 1997, 1998 Free Software Foundation, Inc. 
+   Copyright 1994, 1995, 1997, 1998 Free Software Foundation, Inc. 
    Contributed by Doug Evans (dje@cygnus.com).
 
--- ../binutils-000817/opcodes/arc-opc.c	Fri Apr 14 14:16:58 2000
+++ opcodes/arc-opc.c	Sun Aug 20 23:18:04 2000
@@ -1,4 +1,4 @@
 /* Opcode table for the ARC.
-   Copyright (c) 1994, 1995, 1997, 1998 Free Software Foundation, Inc.
+   Copyright 1994, 1995, 1997, 1998 Free Software Foundation, Inc.
    Contributed by Doug Evans (dje@cygnus.com).
    
--- ../binutils-000817/opcodes/arm-dis.c	Tue Jul  4 15:47:22 2000
+++ opcodes/arm-dis.c	Sun Aug 20 23:18:04 2000
@@ -1,4 +1,5 @@
 /* Instruction printing code for the ARM
-   Copyright (C) 1994, 95, 96, 97, 98, 99, 2000 Free Software Foundation, Inc. 
+   Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000
+   Free Software Foundation, Inc. 
    Contributed by Richard Earnshaw (rwe@pegasus.esprit.ec.org)
    Modification by James G. Smith (jsmith@cygnus.co.uk)
--- ../binutils-000817/opcodes/avr-dis.c	Mon Aug  7 00:12:36 2000
+++ opcodes/avr-dis.c	Sun Aug 20 23:18:04 2000
@@ -1,4 +1,4 @@
 /* Disassemble AVR instructions.
-   Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1999, 2000 Free Software Foundation, Inc.
 
    Contributed by Denis Chertykov <denisc@overta.ru>
--- ../binutils-000817/opcodes/cgen-asm.c	Thu Jul 27 08:45:49 2000
+++ opcodes/cgen-asm.c	Sun Aug 20 23:18:04 2000
@@ -1,5 +1,5 @@
 /* CGEN generic assembler support code.
 
-   Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
+   Copyright 1996, 1997, 1998 Free Software Foundation, Inc.
 
    This file is part of the GNU Binutils and GDB, the GNU debugger.
--- ../binutils-000817/opcodes/cgen-asm.in	Fri Aug  4 12:21:43 2000
+++ opcodes/cgen-asm.in	Sun Aug 20 23:18:04 2000
@@ -5,5 +5,5 @@
 - the resultant file is machine generated, cgen-asm.in isn't
 
-Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
+Copyright 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
 
 This file is part of the GNU Binutils and GDB, the GNU debugger.
--- ../binutils-000817/opcodes/cgen-dis.c	Thu Jul 27 08:45:49 2000
+++ opcodes/cgen-dis.c	Sun Aug 20 23:18:04 2000
@@ -1,5 +1,5 @@
 /* CGEN generic disassembler support code.
 
-   Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
+   Copyright 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
 
    This file is part of the GNU Binutils and GDB, the GNU debugger.
--- ../binutils-000817/opcodes/cgen-dis.in	Fri Aug  4 12:21:43 2000
+++ opcodes/cgen-dis.in	Sun Aug 20 23:18:04 2000
@@ -5,5 +5,5 @@
 - the resultant file is machine generated, cgen-dis.in isn't
 
-Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
+Copyright 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
 
 This file is part of the GNU Binutils and GDB, the GNU debugger.
--- ../binutils-000817/opcodes/cgen-ibld.in	Fri Aug  4 12:21:43 2000
+++ opcodes/cgen-ibld.in	Sun Aug 20 23:18:04 2000
@@ -4,5 +4,5 @@
 - the resultant file is machine generated, cgen-ibld.in isn't
 
-Copyright (C) 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
+Copyright 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
 
 This file is part of the GNU Binutils and GDB, the GNU debugger.
--- ../binutils-000817/opcodes/cgen-opc.c	Thu Jul 27 08:45:49 2000
+++ opcodes/cgen-opc.c	Sun Aug 20 23:18:04 2000
@@ -1,5 +1,5 @@
 /* CGEN generic opcode support.
 
-   Copyright (C) 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
 
    This file is part of the GNU Binutils and GDB, the GNU debugger.
--- ../binutils-000817/opcodes/cris-dis.c	Fri Jul 21 02:46:28 2000
+++ opcodes/cris-dis.c	Sun Aug 20 23:18:04 2000
@@ -1,4 +1,4 @@
 /* Disassembler code for CRIS.
-   Copyright (C) 2000 Free Software Foundation, Inc.
+   Copyright 2000 Free Software Foundation, Inc.
    Contributed by Axis Communications AB, Lund, Sweden.
    Written by Hans-Peter Nilsson.
--- ../binutils-000817/opcodes/cris-opc.c	Fri Jul 21 02:46:28 2000
+++ opcodes/cris-opc.c	Sun Aug 20 23:18:04 2000
@@ -1,4 +1,4 @@
 /* cris-opc.c -- Table of opcodes for the CRIS processor.
-   Copyright (C) 2000 Free Software Foundation, Inc.
+   Copyright 2000 Free Software Foundation, Inc.
    Contributed by Axis Communications AB, Lund, Sweden.
    Originally written for GAS 1.38.1 by Mikael Asker.
--- ../binutils-000817/opcodes/d10v-dis.c	Fri Apr 14 14:16:58 2000
+++ opcodes/d10v-dis.c	Sun Aug 20 23:18:04 2000
@@ -1,4 +1,4 @@
 /* Disassemble D10V instructions.
-   Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
+   Copyright 1996, 1997, 1998 Free Software Foundation, Inc.
 
 This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/opcodes/d30v-dis.c	Fri Apr 14 14:16:58 2000
+++ opcodes/d30v-dis.c	Sun Aug 20 23:18:04 2000
@@ -1,4 +1,4 @@
 /* Disassemble D30V instructions.
-   Copyright (C) 1997, 1998, 2000 Free Software Foundation, Inc.
+   Copyright 1997, 1998, 2000 Free Software Foundation, Inc.
 
 This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/opcodes/d30v-opc.c	Fri Apr 14 14:16:58 2000
+++ opcodes/d30v-opc.c	Sun Aug 20 23:18:04 2000
@@ -1,4 +1,4 @@
 /* d30v-opc.c -- D30V opcode list
-   Copyright (C) 1997, 1998, 2000 Free Software Foundation, Inc.
+   Copyright 1997, 1998, 2000 Free Software Foundation, Inc.
    Written by Martin Hunt, Cygnus Support
 
--- ../binutils-000817/opcodes/dis-buf.c	Mon Feb 21 23:01:26 2000
+++ opcodes/dis-buf.c	Sun Aug 20 23:18:04 2000
@@ -1,4 +1,4 @@
 /* Disassemble from a buffer, for GNU.
-   Copyright (C) 1993, 1994, 1998, 1999 Free Software Foundation, Inc.
+   Copyright 1993, 1994, 1998, 1999 Free Software Foundation, Inc.
 
 This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/opcodes/disassemble.c	Sat Jul 29 07:10:20 2000
+++ opcodes/disassemble.c	Sun Aug 20 23:18:04 2000
@@ -1,4 +1,4 @@
 /* Select disassembly routine for specified architecture.
-   Copyright (C) 1994, 95, 96, 97, 98, 99, 2000
+   Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/opcodes/fr30-asm.c	Tue Oct  5 10:05:52 1999
+++ opcodes/fr30-asm.c	Sun Aug 20 23:18:04 2000
@@ -5,5 +5,5 @@
 - the resultant file is machine generated, cgen-asm.in isn't
 
-Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
+Copyright 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
 
 This file is part of the GNU Binutils and GDB, the GNU debugger.
--- ../binutils-000817/opcodes/fr30-desc.c	Tue Apr 25 03:32:36 2000
+++ opcodes/fr30-desc.c	Sun Aug 20 23:18:04 2000
@@ -3,5 +3,5 @@
 THIS FILE IS MACHINE GENERATED WITH CGEN.
 
-Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
+Copyright 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
 
 This file is part of the GNU Binutils and/or GDB, the GNU debugger.
--- ../binutils-000817/opcodes/fr30-desc.h	Wed May 17 05:28:07 2000
+++ opcodes/fr30-desc.h	Sun Aug 20 23:18:04 2000
@@ -3,5 +3,5 @@
 THIS FILE IS MACHINE GENERATED WITH CGEN.
 
-Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
+Copyright 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
 
 This file is part of the GNU Binutils and/or GDB, the GNU debugger.
--- ../binutils-000817/opcodes/fr30-dis.c	Mon Aug 30 07:16:25 1999
+++ opcodes/fr30-dis.c	Sun Aug 20 23:18:04 2000
@@ -5,5 +5,5 @@
 - the resultant file is machine generated, cgen-dis.in isn't
 
-Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
+Copyright 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
 
 This file is part of the GNU Binutils and GDB, the GNU debugger.
--- ../binutils-000817/opcodes/fr30-ibld.c	Mon Aug 30 07:16:25 1999
+++ opcodes/fr30-ibld.c	Sun Aug 20 23:18:04 2000
@@ -4,5 +4,5 @@
 - the resultant file is machine generated, cgen-ibld.in isn't
 
-Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
+Copyright 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
 
 This file is part of the GNU Binutils and GDB, the GNU debugger.
--- ../binutils-000817/opcodes/fr30-opc.c	Mon Aug 30 07:16:25 1999
+++ opcodes/fr30-opc.c	Sun Aug 20 23:18:04 2000
@@ -3,5 +3,5 @@
 THIS FILE IS MACHINE GENERATED WITH CGEN.
 
-Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
+Copyright 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
 
 This file is part of the GNU Binutils and/or GDB, the GNU debugger.
--- ../binutils-000817/opcodes/fr30-opc.h	Mon May  3 17:28:59 1999
+++ opcodes/fr30-opc.h	Sun Aug 20 23:18:04 2000
@@ -3,5 +3,5 @@
 THIS FILE IS MACHINE GENERATED WITH CGEN.
 
-Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
+Copyright 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
 
 This file is part of the GNU Binutils and/or GDB, the GNU debugger.
--- ../binutils-000817/opcodes/h8300-dis.c	Tue Jul  4 07:52:37 2000
+++ opcodes/h8300-dis.c	Sun Aug 20 23:18:04 2000
@@ -1,4 +1,4 @@
 /* Disassemble h8300 instructions.
-   Copyright (C) 1993, 1998, 2000 Free Software Foundation, Inc.
+   Copyright 1993, 1998, 2000 Free Software Foundation, Inc.
 
 This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/opcodes/h8500-dis.c	Tue Jul  4 07:52:37 2000
+++ opcodes/h8500-dis.c	Sun Aug 20 23:18:04 2000
@@ -1,4 +1,4 @@
 /* Disassemble h8500 instructions.
-   Copyright (C) 1993, 94, 95, 1998 Free Software Foundation, Inc.
+   Copyright 1993, 1994, 1995, 1998 Free Software Foundation, Inc.
 
 This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/opcodes/hppa-dis.c	Sun Jul  9 17:29:39 2000
+++ opcodes/hppa-dis.c	Sun Aug 20 23:18:04 2000
@@ -1,4 +1,4 @@
 /* Disassembler for the PA-RISC. Somewhat derived from sparc-pinsn.c.
-   Copyright 1989, 90, 92, 93, 94, 95, 98, 99, 2000
+   Copyright 1989, 1990, 1992, 1993, 1994, 1995, 1998, 1999, 2000
    Free Software Foundation, Inc.
 
--- ../binutils-000817/opcodes/i386-dis.c	Tue Dec 28 03:10:31 1999
+++ opcodes/i386-dis.c	Sun Aug 20 23:18:05 2000
@@ -1,4 +1,4 @@
 /* Print i386 instructions for GDB, the GNU debugger.
-   Copyright (C) 1988, 89, 91, 93, 94, 95, 96, 97, 98, 1999
+   Copyright 1988, 1989, 1991, 1993, 1994, 1995, 1996, 1997, 1998, 1999
    Free Software Foundation, Inc.
 
--- ../binutils-000817/opcodes/i960-dis.c	Fri Apr 14 14:16:58 2000
+++ opcodes/i960-dis.c	Sun Aug 20 23:18:05 2000
@@ -1,4 +1,5 @@
 /* Disassemble i80960 instructions.
-   Copyright (C) 1990, 91, 93, 94, 95, 96, 1998 Free Software Foundation, Inc.
+   Copyright 1990, 1991, 1993, 1994, 1995, 1996, 1998
+   Free Software Foundation, Inc.
 
 This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/opcodes/ia64-asmtab.h	Sun Apr 23 12:39:12 2000
+++ opcodes/ia64-asmtab.h	Sun Aug 20 23:18:05 2000
@@ -1,4 +1,4 @@
 /* ia64-asmtab.h -- Header for compacted IA-64 opcode tables.
-   Copyright (C) 1999 Free Software Foundation, Inc.
+   Copyright 1999 Free Software Foundation, Inc.
    Contributed by Bob Manson of Cygnus Support <manson@cygnus.com>
 
--- ../binutils-000817/opcodes/ia64-dis.c	Tue Aug  8 07:44:26 2000
+++ opcodes/ia64-dis.c	Sun Aug 20 23:18:05 2000
@@ -1,4 +1,4 @@
 /* ia64-dis.c -- Disassemble ia64 instructions
-   Copyright (C) 1998, 1999 Free Software Foundation, Inc.
+   Copyright 1998, 1999 Free Software Foundation, Inc.
    Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
 
--- ../binutils-000817/opcodes/ia64-gen.c	Wed May 31 04:35:33 2000
+++ opcodes/ia64-gen.c	Sun Aug 20 23:18:05 2000
@@ -1,4 +1,4 @@
 /* ia64-gen.c -- Generate a shrunk set of opcode tables
-   Copyright (c) 1999 Free Software Foundation, Inc.
+   Copyright 1999 Free Software Foundation, Inc.
    Written by Bob Manson, Cygnus Solutions, <manson@cygnus.com>
 
--- ../binutils-000817/opcodes/ia64-opc-a.c	Sat Apr 22 06:22:23 2000
+++ opcodes/ia64-opc-a.c	Sun Aug 20 23:18:05 2000
@@ -1,4 +1,4 @@
 /* ia64-opc-a.c -- IA-64 `A' opcode table.
-   Copyright (C) 1998, 1999 Free Software Foundation, Inc.
+   Copyright 1998, 1999 Free Software Foundation, Inc.
    Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
 
--- ../binutils-000817/opcodes/ia64-opc-b.c	Sun Apr 23 12:39:13 2000
+++ opcodes/ia64-opc-b.c	Sun Aug 20 23:18:05 2000
@@ -1,4 +1,4 @@
 /* ia64-opc-b.c -- IA-64 `B' opcode table.
-   Copyright (C) 1998, 1999 Free Software Foundation, Inc.
+   Copyright 1998, 1999 Free Software Foundation, Inc.
    Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
 
--- ../binutils-000817/opcodes/ia64-opc-f.c	Thu Aug 17 09:20:15 2000
+++ opcodes/ia64-opc-f.c	Sun Aug 20 23:18:05 2000
@@ -1,4 +1,4 @@
 /* ia64-opc-f.c -- IA-64 `F' opcode table.
-   Copyright (C) 1998, 1999 Free Software Foundation, Inc.
+   Copyright 1998, 1999 Free Software Foundation, Inc.
    Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
 
--- ../binutils-000817/opcodes/ia64-opc-i.c	Sat Apr 22 06:22:24 2000
+++ opcodes/ia64-opc-i.c	Sun Aug 20 23:18:05 2000
@@ -1,4 +1,4 @@
 /* ia64-opc-i.c -- IA-64 `I' opcode table.
-   Copyright (C) 1998, 1999 Free Software Foundation, Inc.
+   Copyright 1998, 1999 Free Software Foundation, Inc.
    Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
 
--- ../binutils-000817/opcodes/ia64-opc-m.c	Thu Aug 17 09:20:15 2000
+++ opcodes/ia64-opc-m.c	Sun Aug 20 23:18:05 2000
@@ -1,4 +1,4 @@
 /* ia64-opc-m.c -- IA-64 `M' opcode table.
-   Copyright (C) 1998, 1999 Free Software Foundation, Inc.
+   Copyright 1998, 1999 Free Software Foundation, Inc.
    Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
 
--- ../binutils-000817/opcodes/ia64-opc-x.c	Sat Apr 22 06:22:24 2000
+++ opcodes/ia64-opc-x.c	Sun Aug 20 23:18:05 2000
@@ -1,4 +1,4 @@
 /* ia64-opc-x.c -- IA-64 `X' opcode table.
-   Copyright (C) 1998, 1999 Free Software Foundation, Inc.
+   Copyright 1998, 1999 Free Software Foundation, Inc.
    Contributed by Timothy Wall <twall@cygnus.com>
 
--- ../binutils-000817/opcodes/ia64-opc.c	Sun Apr 23 12:39:13 2000
+++ opcodes/ia64-opc.c	Sun Aug 20 23:18:05 2000
@@ -1,4 +1,4 @@
 /* ia64-opc.c -- Functions to access the compacted opcode table
-   Copyright (C) 1999 Free Software Foundation, Inc.
+   Copyright 1999 Free Software Foundation, Inc.
    Written by Bob Manson of Cygnus Solutions, <manson@cygnus.com>
 
--- ../binutils-000817/opcodes/ia64-opc.h	Thu Aug 17 09:20:15 2000
+++ opcodes/ia64-opc.h	Sun Aug 20 23:18:05 2000
@@ -1,4 +1,4 @@
 /* ia64-opc.h -- IA-64 opcode table.
-   Copyright (C) 1998, 1999 Free Software Foundation, Inc.
+   Copyright 1998, 1999 Free Software Foundation, Inc.
    Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
 
--- ../binutils-000817/opcodes/m10200-dis.c	Fri Apr 14 14:16:58 2000
+++ opcodes/m10200-dis.c	Sun Aug 20 23:18:05 2000
@@ -1,4 +1,4 @@
 /* Disassemble MN10200 instructions.
-   Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
+   Copyright 1996, 1997, 1998 Free Software Foundation, Inc.
 
 This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/opcodes/m10200-opc.c	Fri Apr 14 14:16:58 2000
+++ opcodes/m10200-opc.c	Sun Aug 20 23:18:05 2000
@@ -1,4 +1,4 @@
 /* Assemble Matsushita MN10200 instructions.
-   Copyright (C) 1996, 1997 Free Software Foundation, Inc.
+   Copyright 1996, 1997 Free Software Foundation, Inc.
 
 This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/opcodes/m10300-dis.c	Wed May 31 04:35:33 2000
+++ opcodes/m10300-dis.c	Sun Aug 20 23:18:05 2000
@@ -1,4 +1,4 @@
 /* Disassemble MN10300 instructions.
-   Copyright (C) 1996, 1997, 1998, 2000 Free Software Foundation, Inc.
+   Copyright 1996, 1997, 1998, 2000 Free Software Foundation, Inc.
 
 This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/opcodes/m10300-opc.c	Fri Apr 14 14:16:58 2000
+++ opcodes/m10300-opc.c	Sun Aug 20 23:18:05 2000
@@ -1,4 +1,4 @@
 /* Assemble Matsushita MN10300 instructions.
-   Copyright (C) 1996, 1997, 1998, 2000 Free Software Foundation, Inc.
+   Copyright 1996, 1997, 1998, 2000 Free Software Foundation, Inc.
 
 This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/opcodes/m32r-asm.c	Fri Feb 25 03:19:36 2000
+++ opcodes/m32r-asm.c	Sun Aug 20 23:18:05 2000
@@ -5,5 +5,5 @@
 - the resultant file is machine generated, cgen-asm.in isn't
 
-Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
+Copyright 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
 
 This file is part of the GNU Binutils and GDB, the GNU debugger.
--- ../binutils-000817/opcodes/m32r-desc.c	Tue Feb 29 04:57:40 2000
+++ opcodes/m32r-desc.c	Sun Aug 20 23:18:05 2000
@@ -3,5 +3,5 @@
 THIS FILE IS MACHINE GENERATED WITH CGEN.
 
-Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
+Copyright 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
 
 This file is part of the GNU Binutils and/or GDB, the GNU debugger.
--- ../binutils-000817/opcodes/m32r-desc.h	Wed May 17 05:28:07 2000
+++ opcodes/m32r-desc.h	Sun Aug 20 23:18:05 2000
@@ -3,5 +3,5 @@
 THIS FILE IS MACHINE GENERATED WITH CGEN.
 
-Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
+Copyright 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
 
 This file is part of the GNU Binutils and/or GDB, the GNU debugger.
--- ../binutils-000817/opcodes/m32r-dis.c	Fri Feb 25 03:19:36 2000
+++ opcodes/m32r-dis.c	Sun Aug 20 23:18:05 2000
@@ -5,5 +5,5 @@
 - the resultant file is machine generated, cgen-dis.in isn't
 
-Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
+Copyright 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
 
 This file is part of the GNU Binutils and GDB, the GNU debugger.
--- ../binutils-000817/opcodes/m32r-ibld.c	Fri Feb 25 03:19:36 2000
+++ opcodes/m32r-ibld.c	Sun Aug 20 23:18:05 2000
@@ -4,5 +4,5 @@
 - the resultant file is machine generated, cgen-ibld.in isn't
 
-Copyright (C) 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
+Copyright 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
 
 This file is part of the GNU Binutils and GDB, the GNU debugger.
--- ../binutils-000817/opcodes/m32r-opc.c	Tue Oct  5 10:05:52 1999
+++ opcodes/m32r-opc.c	Sun Aug 20 23:18:05 2000
@@ -3,5 +3,5 @@
 THIS FILE IS MACHINE GENERATED WITH CGEN.
 
-Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
+Copyright 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
 
 This file is part of the GNU Binutils and/or GDB, the GNU debugger.
--- ../binutils-000817/opcodes/m32r-opc.h	Fri Feb 25 03:19:36 2000
+++ opcodes/m32r-opc.h	Sun Aug 20 23:18:05 2000
@@ -3,5 +3,5 @@
 THIS FILE IS MACHINE GENERATED WITH CGEN.
 
-Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
+Copyright 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
 
 This file is part of the GNU Binutils and/or GDB, the GNU debugger.
--- ../binutils-000817/opcodes/m32r-opinst.c	Tue Oct  5 10:05:52 1999
+++ opcodes/m32r-opinst.c	Sun Aug 20 23:18:05 2000
@@ -3,5 +3,5 @@
 THIS FILE IS MACHINE GENERATED WITH CGEN.
 
-Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
+Copyright 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
 
 This file is part of the GNU Binutils and/or GDB, the GNU debugger.
--- ../binutils-000817/opcodes/m68hc11-dis.c	Mon Jun 19 11:22:43 2000
+++ opcodes/m68hc11-dis.c	Sun Aug 20 23:18:05 2000
@@ -1,4 +1,4 @@
 /* m68hc11-dis.c -- Motorola 68HC11 & 68HC12 disassembly
-   Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1999, 2000 Free Software Foundation, Inc.
    Written by Stephane Carrez (stcarrez@worldnet.fr)
 
--- ../binutils-000817/opcodes/m68k-dis.c	Mon May  8 17:22:54 2000
+++ opcodes/m68k-dis.c	Sun Aug 20 23:21:13 2000
@@ -1,5 +1,5 @@
 /* Print Motorola 68k instructions.
-   Copyright 1986, 87, 89, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000
-   Free Software Foundation, Inc.
+   Copyright 1986, 1987, 1989, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
+   1999, 2000 Free Software Foundation, Inc.
 
 This file is free software; you can redistribute it and/or modify
--- ../binutils-000817/opcodes/m68k-opc.c	Fri Apr 14 14:16:58 2000
+++ opcodes/m68k-opc.c	Sun Aug 20 23:18:05 2000
@@ -1,4 +1,4 @@
 /* Opcode table for m680[012346]0/m6888[12]/m68851/mcf5200.
-   Copyright 1989, 91, 92, 93, 94, 95, 96, 97, 98, 1999
+   Copyright 1989, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
    Free Software Foundation.
 
--- ../binutils-000817/opcodes/m88k-dis.c	Fri Apr 14 14:16:58 2000
+++ opcodes/m88k-dis.c	Sun Aug 20 23:18:05 2000
@@ -1,4 +1,4 @@
 /* Print instructions for the Motorola 88000, for GDB and GNU Binutils.
-   Copyright (c) 1986, 1987, 1988, 1989, 1990, 1991, 1993, 1998
+   Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1993, 1998
    Free Software Foundation, Inc.
    Contributed by Data General Corporation, November 1989.
--- ../binutils-000817/opcodes/mcore-dis.c	Wed May 31 04:35:33 2000
+++ opcodes/mcore-dis.c	Sun Aug 20 23:18:05 2000
@@ -1,4 +1,4 @@
 /* Disassemble Motorola M*Core instructions.
-   Copyright (C) 1993, 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1993, 1999, 2000 Free Software Foundation, Inc.
 
 This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/opcodes/mcore-opc.h	Fri Feb 11 08:41:11 2000
+++ opcodes/mcore-opc.h	Sun Aug 20 23:18:05 2000
@@ -1,4 +1,4 @@
 /* Assembler instructions for Motorola's Mcore processor
-   Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1999, 2000 Free Software Foundation, Inc.
 
    
--- ../binutils-000817/opcodes/mips-dis.c	Thu May 25 01:24:56 2000
+++ opcodes/mips-dis.c	Sun Aug 20 23:18:05 2000
@@ -1,4 +1,4 @@
 /* Print mips instructions for GDB, the GNU debugger, or for objdump.
-   Copyright (c) 1989, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000
+   Copyright 1989, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
    Free Software Foundation, Inc.
    Contributed by Nobuyuki Hikichi(hikichi@sra.co.jp).
--- ../binutils-000817/opcodes/ns32k-dis.c	Mon May  3 17:29:00 1999
+++ opcodes/ns32k-dis.c	Sun Aug 20 23:18:05 2000
@@ -1,4 +1,5 @@
 /* Print National Semiconductor 32000 instructions.
-   Copyright (c) 1986, 88, 91, 92, 94, 95, 1998 Free Software Foundation, Inc.
+   Copyright 1986, 1988, 1991, 1992, 1994, 1995, 1998
+   Free Software Foundation, Inc.
 
 This file is part of opcodes library.
--- ../binutils-000817/opcodes/opintl.h	Thu Jun  1 04:32:07 2000
+++ opcodes/opintl.h	Sun Aug 20 23:18:05 2000
@@ -1,4 +1,4 @@
 /* opintl.h - opcodes specific header for gettext code.
-   Copyright (C) 1998, 1999 Free Software Foundation, Inc.
+   Copyright 1998, 1999 Free Software Foundation, Inc.
 
    Written by Tom Tromey <tromey@cygnus.com>
--- ../binutils-000817/opcodes/pj-dis.c	Fri Apr 14 14:16:58 2000
+++ opcodes/pj-dis.c	Sun Aug 20 23:18:05 2000
@@ -1,4 +1,4 @@
 /* pj-dis.c -- Disassemble picoJava instructions.
-   Copyright (C) 1999 Free Software Foundation, Inc. 
+   Copyright 1999 Free Software Foundation, Inc. 
    Contributed by Steve Chamberlain, of Transmeta (sac@pobox.com).
 
--- ../binutils-000817/opcodes/pj-opc.c	Fri Apr 14 14:16:58 2000
+++ opcodes/pj-opc.c	Sun Aug 20 23:18:05 2000
@@ -1,4 +1,4 @@
 /* pj-opc.c -- Definitions for picoJava opcodes.
-   Copyright (C) 1999 Free Software Foundation, Inc.
+   Copyright 1999 Free Software Foundation, Inc.
    Contributed by Steve Chamberlain of Transmeta (sac@pobox.com).
 
--- ../binutils-000817/opcodes/ppc-opc.c	Mon Jul 10 06:28:51 2000
+++ opcodes/ppc-opc.c	Sun Aug 20 23:18:05 2000
@@ -1,4 +1,5 @@
 /* ppc-opc.c -- PowerPC opcode list
-   Copyright (c) 1994, 95, 96, 97, 98, 99, 2000 Free Software Foundation, Inc.
+   Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000
+   Free Software Foundation, Inc.
    Written by Ian Lance Taylor, Cygnus Support
 
--- ../binutils-000817/opcodes/sh-dis.c	Fri Apr 14 14:16:58 2000
+++ opcodes/sh-dis.c	Sun Aug 20 23:18:05 2000
@@ -1,4 +1,5 @@
 /* Disassemble SH instructions.
-   Copyright (C) 1993, 94, 95, 96, 97, 1998, 2000 Free Software Foundation, Inc.
+   Copyright 1993, 1994, 1995, 1996, 1997, 1998, 2000
+   Free Software Foundation, Inc.
 
 This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/opcodes/sh-opc.h	Thu Apr  6 07:43:26 2000
+++ opcodes/sh-opc.h	Sun Aug 20 23:18:05 2000
@@ -1,4 +1,5 @@
 /* Definitions for SH opcodes.
-   Copyright (C) 1993, 94, 95, 96, 97, 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1993, 1994, 1995, 1996, 1997, 1999, 2000
+   Free Software Foundation, Inc.
 
 This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/opcodes/sparc-dis.c	Fri Apr 14 14:16:58 2000
+++ opcodes/sparc-dis.c	Sun Aug 20 23:18:05 2000
@@ -1,4 +1,5 @@
 /* Print SPARC instructions.
-   Copyright (C) 1989, 91-97, 1998 Free Software Foundation, Inc.
+   Copyright 1989, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998
+   Free Software Foundation, Inc.
 
 This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/opcodes/sparc-opc.c	Wed Jul 12 04:44:12 2000
+++ opcodes/sparc-opc.c	Sun Aug 20 23:18:06 2000
@@ -1,4 +1,4 @@
 /* Table of opcodes for the sparc.
-   Copyright (C) 1989, 91, 92, 93, 94, 95, 96, 97, 98, 1999
+   Copyright 1989, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
    Free Software Foundation, Inc.
 
--- ../binutils-000817/opcodes/sysdep.h	Fri Apr 14 14:16:58 2000
+++ opcodes/sysdep.h	Sun Aug 20 23:18:06 2000
@@ -1,4 +1,4 @@
 /* Random host-dependent support code.
-   Copyright (C) 1995, 1997 Free Software Foundation, Inc.
+   Copyright 1995, 1997 Free Software Foundation, Inc.
    Written by Ken Raeburn.
 
--- ../binutils-000817/opcodes/tic30-dis.c	Mon Jun 21 20:11:52 1999
+++ opcodes/tic30-dis.c	Sun Aug 20 23:18:06 2000
@@ -1,4 +1,4 @@
 /* Disassembly routines for TMS320C30 architecture
-   Copyright (C) 1998, 1999 Free Software Foundation, Inc.
+   Copyright 1998, 1999 Free Software Foundation, Inc.
    Contributed by Steven Haworth (steve@pm.cse.rmit.edu.au)
 
--- ../binutils-000817/opcodes/tic54x-dis.c	Wed May 31 04:35:33 2000
+++ opcodes/tic54x-dis.c	Sun Aug 20 23:18:06 2000
@@ -1,4 +1,4 @@
 /* Disassembly routines for TMS320C54X architecture
-   Copyright (C) 1999,2000 Free Software Foundation, Inc.
+   Copyright 1999, 2000 Free Software Foundation, Inc.
    Contributed by Timothy Wall (twall@cygnus.com)
 
--- ../binutils-000817/opcodes/tic54x-opc.c	Wed May 31 04:35:33 2000
+++ opcodes/tic54x-opc.c	Sun Aug 20 23:18:06 2000
@@ -1,4 +1,4 @@
 /* Table of opcodes for the Texas Instruments TMS320C54X
-   Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1999, 2000 Free Software Foundation, Inc.
    Contributed by Timothy Wall (twall@cygnus.com)
 
--- ../binutils-000817/opcodes/v850-dis.c	Fri Apr 14 14:16:58 2000
+++ opcodes/v850-dis.c	Sun Aug 20 23:18:06 2000
@@ -1,4 +1,4 @@
 /* Disassemble V850 instructions.
-   Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
+   Copyright 1996, 1997, 1998 Free Software Foundation, Inc.
 
 This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/opcodes/v850-opc.c	Fri Apr 14 14:16:58 2000
+++ opcodes/v850-opc.c	Sun Aug 20 23:18:06 2000
@@ -1,4 +1,4 @@
 /* Assemble V850 instructions.
-   Copyright (C) 1996 Free Software Foundation, Inc.
+   Copyright 1996 Free Software Foundation, Inc.
 
 This program is free software; you can redistribute it and/or modify
--- ../binutils-000817/opcodes/vax-dis.c	Fri Apr 14 14:16:58 2000
+++ opcodes/vax-dis.c	Sun Aug 20 23:18:06 2000
@@ -1,4 +1,4 @@
 /* Print VAX instructions.
-   Copyright (C) 1995, 1998 Free Software Foundation, Inc.
+   Copyright 1995, 1998 Free Software Foundation, Inc.
    Contributed by Pauline Middelink <middelin@polyware.iaf.nl>
 
--- ../binutils-000817/opcodes/w65-dis.c	Fri Apr 14 14:16:58 2000
+++ opcodes/w65-dis.c	Sun Aug 20 23:18:06 2000
@@ -1,4 +1,4 @@
 /* Disassemble WDC 65816 instructions.
-   Copyright (C) 1995, 1998 Free Software Foundation, Inc.
+   Copyright 1995, 1998 Free Software Foundation, Inc.
 
 This program is free software; you can redistribute it and/or modify


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]