From: Pedro Alves Date: Tue, 12 Feb 2013 19:03:57 +0000 (+0000) Subject: Consistent use of (C) after "Copyright". X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0b1afbb37b6c21c50564ead74decadc13eba73c5;p=binutils-gdb.git Consistent use of (C) after "Copyright". While writing the previous patch, I noticed that we're not consistent with the (C) in the copyright header. The maintainers manual prefers having it, though also says it's optional. We have over 10x more files with (C) than without in gdb's code, so I spent a few minutes grepping and fixing. Funny enough, the testsuite has it backwards. I'll leave that for another time. gdb/ 2013-02-12 Pedro Alves * amd64-darwin-tdep.c: Add (C) after Copyright. * cli/cli-cmds.h: Ditto. * cli/cli-decode.c: Ditto. * cli/cli-decode.h: Ditto. * cli/cli-dump.c: Ditto. * cli/cli-dump.h: Ditto. * cli/cli-interp.c: Ditto. * cli/cli-logging.c: Ditto. * cli/cli-script.c: Ditto. * cli/cli-script.h: Ditto. * cli/cli-setshow.c: Ditto. * cli/cli-setshow.h: Ditto. * cli/cli-utils.c: Ditto. * cli/cli-utils.h: Ditto. * config/alpha/nm-osf3.h: Ditto. * config/djgpp/djconfig.sh: Ditto. * config/i386/nm-fbsd.h: Ditto. * config/i386/nm-i386gnu.h: Ditto. * config/nm-linux.h: Ditto. * config/nm-nto.h: Ditto. * config/rs6000/nm-rs6000.h: Ditto. * config/sparc/nm-sol2.h: Ditto. * darwin-nat-info.c: Ditto. * dfp.c: Ditto. * dfp.h: Ditto. * gdb-demangle.h: Ditto. * i386-darwin-nat.c: Ditto. * i386-darwin-tdep.c: Ditto. * linux-fork.h: Ditto. * m32c-tdep.c: Ditto. * microblaze-linux-tdep.c: Ditto. * microblaze-rom.c: Ditto. * microblaze-tdep.c: Ditto. * microblaze-tdep.h: Ditto. * mips-linux-tdep.h: Ditto. * ppc-ravenscar-thread.c: Ditto. * ppc-ravenscar-thread.h: Ditto. * prologue-value.c: Ditto. * prologue-value.h: Ditto. * ravenscar-thread.c: Ditto. * ravenscar-thread.h: Ditto. * sparc-ravenscar-thread.c: Ditto. * sparc-ravenscar-thread.h: Ditto. * tilegx-linux-tdep.c: Ditto. * unwind_stop_reasons.def: Ditto. * windows-nat.h: Ditto. * xtensa-linux-tdep.c: Ditto. * xtensa-xtregs.c: Ditto. * regformats/regdat.sh: Ditto. * regformats/regdef.h: Ditto. gdb/gdbserver/ 2013-02-12 Pedro Alves * linux-xtensa-low.c: Ditto. * xtensa-xtregs.c: Ditto. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 8860121f350..721f224ca43 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,56 @@ +2013-02-12 Pedro Alves + + * amd64-darwin-tdep.c: Add (C) after Copyright. + * cli/cli-cmds.h: Ditto. + * cli/cli-decode.c: Ditto. + * cli/cli-decode.h: Ditto. + * cli/cli-dump.c: Ditto. + * cli/cli-dump.h: Ditto. + * cli/cli-interp.c: Ditto. + * cli/cli-logging.c: Ditto. + * cli/cli-script.c: Ditto. + * cli/cli-script.h: Ditto. + * cli/cli-setshow.c: Ditto. + * cli/cli-setshow.h: Ditto. + * cli/cli-utils.c: Ditto. + * cli/cli-utils.h: Ditto. + * config/alpha/nm-osf3.h: Ditto. + * config/djgpp/djconfig.sh: Ditto. + * config/i386/nm-fbsd.h: Ditto. + * config/i386/nm-i386gnu.h: Ditto. + * config/nm-linux.h: Ditto. + * config/nm-nto.h: Ditto. + * config/rs6000/nm-rs6000.h: Ditto. + * config/sparc/nm-sol2.h: Ditto. + * darwin-nat-info.c: Ditto. + * dfp.c: Ditto. + * dfp.h: Ditto. + * gdb-demangle.h: Ditto. + * i386-darwin-nat.c: Ditto. + * i386-darwin-tdep.c: Ditto. + * linux-fork.h: Ditto. + * m32c-tdep.c: Ditto. + * microblaze-linux-tdep.c: Ditto. + * microblaze-rom.c: Ditto. + * microblaze-tdep.c: Ditto. + * microblaze-tdep.h: Ditto. + * mips-linux-tdep.h: Ditto. + * ppc-ravenscar-thread.c: Ditto. + * ppc-ravenscar-thread.h: Ditto. + * prologue-value.c: Ditto. + * prologue-value.h: Ditto. + * ravenscar-thread.c: Ditto. + * ravenscar-thread.h: Ditto. + * sparc-ravenscar-thread.c: Ditto. + * sparc-ravenscar-thread.h: Ditto. + * tilegx-linux-tdep.c: Ditto. + * unwind_stop_reasons.def: Ditto. + * windows-nat.h: Ditto. + * xtensa-linux-tdep.c: Ditto. + * xtensa-xtregs.c: Ditto. + * regformats/regdat.sh: Ditto. + * regformats/regdef.h: Ditto. + 2013-02-12 Pedro Alves * break-catch-sig.c: Update copyright years. diff --git a/gdb/amd64-darwin-tdep.c b/gdb/amd64-darwin-tdep.c index 97c50392fc1..acf781516a0 100644 --- a/gdb/amd64-darwin-tdep.c +++ b/gdb/amd64-darwin-tdep.c @@ -1,5 +1,5 @@ /* Darwin support for GDB, the GNU debugger. - Copyright 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2013 Free Software Foundation, Inc. Contributed by Apple Computer, Inc. diff --git a/gdb/cli/cli-cmds.h b/gdb/cli/cli-cmds.h index f5af5bb5c87..9f6977c0c66 100644 --- a/gdb/cli/cli-cmds.h +++ b/gdb/cli/cli-cmds.h @@ -1,5 +1,5 @@ /* Header file for GDB CLI command implementation library. - Copyright (c) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2013 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/gdb/cli/cli-decode.c b/gdb/cli/cli-decode.c index 27d94bbfc3c..08558bb0043 100644 --- a/gdb/cli/cli-decode.c +++ b/gdb/cli/cli-decode.c @@ -1,6 +1,6 @@ /* Handle lists of commands, their decoding and documentation, for GDB. - Copyright (c) 1986-2013 Free Software Foundation, Inc. + Copyright (C) 1986-2013 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/gdb/cli/cli-decode.h b/gdb/cli/cli-decode.h index 55720569278..47e3a3b0b28 100644 --- a/gdb/cli/cli-decode.h +++ b/gdb/cli/cli-decode.h @@ -1,6 +1,6 @@ /* Header file for GDB command decoding library. - Copyright (c) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2013 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/gdb/cli/cli-dump.c b/gdb/cli/cli-dump.c index 1e594642eac..476cd5691d5 100644 --- a/gdb/cli/cli-dump.c +++ b/gdb/cli/cli-dump.c @@ -1,6 +1,6 @@ /* Dump-to-file commands, for GDB, the GNU debugger. - Copyright (c) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2013 Free Software Foundation, Inc. Contributed by Red Hat. diff --git a/gdb/cli/cli-dump.h b/gdb/cli/cli-dump.h index f833963cf89..585d4d77b01 100644 --- a/gdb/cli/cli-dump.h +++ b/gdb/cli/cli-dump.h @@ -1,6 +1,6 @@ /* Dump-to-file commands, for GDB, the GNU debugger. - Copyright (c) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2013 Free Software Foundation, Inc. This file is part of GDB. diff --git a/gdb/cli/cli-interp.c b/gdb/cli/cli-interp.c index 43c32fe433d..1003cc73bb1 100644 --- a/gdb/cli/cli-interp.c +++ b/gdb/cli/cli-interp.c @@ -1,6 +1,6 @@ /* CLI Definitions for GDB, the GNU debugger. - Copyright (c) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2013 Free Software Foundation, Inc. This file is part of GDB. diff --git a/gdb/cli/cli-logging.c b/gdb/cli/cli-logging.c index 354d12e670e..9f1477dc982 100644 --- a/gdb/cli/cli-logging.c +++ b/gdb/cli/cli-logging.c @@ -1,6 +1,6 @@ /* Command-line output logging for GDB, the GNU debugger. - Copyright (c) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2013 Free Software Foundation, Inc. This file is part of GDB. diff --git a/gdb/cli/cli-script.c b/gdb/cli/cli-script.c index fbba28a954e..a96886685b1 100644 --- a/gdb/cli/cli-script.c +++ b/gdb/cli/cli-script.c @@ -1,6 +1,6 @@ /* GDB CLI command scripting. - Copyright (c) 1986-2013 Free Software Foundation, Inc. + Copyright (C) 1986-2013 Free Software Foundation, Inc. This file is part of GDB. diff --git a/gdb/cli/cli-script.h b/gdb/cli/cli-script.h index d1eb7e0a0d0..d02cb364460 100644 --- a/gdb/cli/cli-script.h +++ b/gdb/cli/cli-script.h @@ -1,5 +1,5 @@ /* Header file for GDB CLI command implementation library. - Copyright (c) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2013 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/gdb/cli/cli-setshow.c b/gdb/cli/cli-setshow.c index 19743266873..0a859c2721b 100644 --- a/gdb/cli/cli-setshow.c +++ b/gdb/cli/cli-setshow.c @@ -1,6 +1,6 @@ /* Handle set and show GDB commands. - Copyright (c) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2013 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/gdb/cli/cli-setshow.h b/gdb/cli/cli-setshow.h index 1771c86e885..079b9dae7ed 100644 --- a/gdb/cli/cli-setshow.h +++ b/gdb/cli/cli-setshow.h @@ -1,5 +1,5 @@ /* Header file for GDB CLI set and show commands implementation. - Copyright (c) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2013 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/gdb/cli/cli-utils.c b/gdb/cli/cli-utils.c index 9c429da2fb9..933fb89b2ab 100644 --- a/gdb/cli/cli-utils.c +++ b/gdb/cli/cli-utils.c @@ -1,6 +1,6 @@ /* CLI utilities. - Copyright (c) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2013 Free Software Foundation, Inc. This file is part of GDB. diff --git a/gdb/cli/cli-utils.h b/gdb/cli/cli-utils.h index a31458ce7c0..6f28e134366 100644 --- a/gdb/cli/cli-utils.h +++ b/gdb/cli/cli-utils.h @@ -1,6 +1,6 @@ /* CLI utilities. - Copyright (c) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2013 Free Software Foundation, Inc. This file is part of GDB. diff --git a/gdb/config/alpha/nm-osf3.h b/gdb/config/alpha/nm-osf3.h index 14221c95d73..b3a082d02d2 100644 --- a/gdb/config/alpha/nm-osf3.h +++ b/gdb/config/alpha/nm-osf3.h @@ -1,5 +1,5 @@ /* Native definitions for alpha running OSF/1-3.x and higher, using procfs. - Copyright 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2013 Free Software Foundation, Inc. This file is part of GDB. diff --git a/gdb/config/djgpp/djconfig.sh b/gdb/config/djgpp/djconfig.sh index da9a0201d3b..42e5a0bfc18 100644 --- a/gdb/config/djgpp/djconfig.sh +++ b/gdb/config/djgpp/djconfig.sh @@ -5,7 +5,7 @@ # configuring other GNU programs for DJGPP. # #===================================================================== -# Copyright 1997-2013 Free Software Foundation, Inc. +# Copyright (C) 1997-2013 Free Software Foundation, Inc. # # Originally written by Robert Hoehne, revised by Eli Zaretskii. # This file is part of GDB. diff --git a/gdb/config/i386/nm-fbsd.h b/gdb/config/i386/nm-fbsd.h index 02a001c3d21..8da0bacf757 100644 --- a/gdb/config/i386/nm-fbsd.h +++ b/gdb/config/i386/nm-fbsd.h @@ -1,6 +1,6 @@ /* Native-dependent definitions for FreeBSD/i386. - Copyright 1986-2013 Free Software Foundation, Inc. + Copyright (C) 1986-2013 Free Software Foundation, Inc. This file is part of GDB. diff --git a/gdb/config/i386/nm-i386gnu.h b/gdb/config/i386/nm-i386gnu.h index 7ce2952291c..43aac5faa70 100644 --- a/gdb/config/i386/nm-i386gnu.h +++ b/gdb/config/i386/nm-i386gnu.h @@ -1,5 +1,5 @@ /* Native-dependent definitions for Intel 386 running the GNU Hurd - Copyright 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2013 Free Software Foundation, Inc. This file is part of GDB. diff --git a/gdb/config/nm-linux.h b/gdb/config/nm-linux.h index 5a5f73b4207..e2e6e2dd7e7 100644 --- a/gdb/config/nm-linux.h +++ b/gdb/config/nm-linux.h @@ -1,6 +1,6 @@ /* Native support for GNU/Linux. - Copyright 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2013 Free Software Foundation, Inc. This file is part of GDB. diff --git a/gdb/config/nm-nto.h b/gdb/config/nm-nto.h index 2220a08a65c..860dd435969 100644 --- a/gdb/config/nm-nto.h +++ b/gdb/config/nm-nto.h @@ -1,6 +1,6 @@ /* Native support for QNX Neutrino version 6. - Copyright 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2013 Free Software Foundation, Inc. This code was donated by QNX Software Systems Ltd. diff --git a/gdb/config/rs6000/nm-rs6000.h b/gdb/config/rs6000/nm-rs6000.h index 525cf9e40cf..e63152129cb 100644 --- a/gdb/config/rs6000/nm-rs6000.h +++ b/gdb/config/rs6000/nm-rs6000.h @@ -1,5 +1,5 @@ /* IBM RS/6000 native-dependent macros for GDB, the GNU debugger. - Copyright 1986-2013 Free Software Foundation, Inc. + Copyright (C) 1986-2013 Free Software Foundation, Inc. This file is part of GDB. diff --git a/gdb/config/sparc/nm-sol2.h b/gdb/config/sparc/nm-sol2.h index 6c195b2da23..6b40b81f18a 100644 --- a/gdb/config/sparc/nm-sol2.h +++ b/gdb/config/sparc/nm-sol2.h @@ -1,6 +1,6 @@ /* Native-dependent definitions for Solaris SPARC. - Copyright 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2013 Free Software Foundation, Inc. This file is part of GDB. diff --git a/gdb/darwin-nat-info.c b/gdb/darwin-nat-info.c index 0e62f5ca4ef..e480cd79d54 100644 --- a/gdb/darwin-nat-info.c +++ b/gdb/darwin-nat-info.c @@ -1,5 +1,5 @@ /* Darwin support for GDB, the GNU debugger. - Copyright 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2013 Free Software Foundation, Inc. Contributed by Apple Computer, Inc. diff --git a/gdb/dfp.c b/gdb/dfp.c index 4c2291624fc..42cba14c79e 100644 --- a/gdb/dfp.c +++ b/gdb/dfp.c @@ -1,6 +1,6 @@ /* Decimal floating point support for GDB. - Copyright 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2013 Free Software Foundation, Inc. This file is part of GDB. diff --git a/gdb/dfp.h b/gdb/dfp.h index 367610b32cf..6c313519719 100644 --- a/gdb/dfp.h +++ b/gdb/dfp.h @@ -1,6 +1,6 @@ /* Decimal floating point support for GDB. - Copyright 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2013 Free Software Foundation, Inc. This file is part of GDB. diff --git a/gdb/gdb-demangle.h b/gdb/gdb-demangle.h index 2d62956d686..1e91414835d 100644 --- a/gdb/gdb-demangle.h +++ b/gdb/gdb-demangle.h @@ -1,5 +1,5 @@ /* Basic C++ demangling support for GDB. - Copyright (c) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2013 Free Software Foundation, Inc. This file is part of GDB. diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog index 260c85eb524..1a3ebfafcad 100644 --- a/gdb/gdbserver/ChangeLog +++ b/gdb/gdbserver/ChangeLog @@ -1,3 +1,8 @@ +2013-02-12 Pedro Alves + + * linux-xtensa-low.c: Ditto. + * xtensa-xtregs.c: Ditto. + 2013-02-12 Sanimir Agovic * thread-db.c (thread_db_get_tls_address): NULL pointer check diff --git a/gdb/gdbserver/linux-xtensa-low.c b/gdb/gdbserver/linux-xtensa-low.c index 2c11418e584..d988a465bb1 100644 --- a/gdb/gdbserver/linux-xtensa-low.c +++ b/gdb/gdbserver/linux-xtensa-low.c @@ -1,5 +1,5 @@ /* GNU/Linux/Xtensa specific low level interface, for the remote server for GDB. - Copyright 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2013 Free Software Foundation, Inc. This file is part of GDB. diff --git a/gdb/gdbserver/xtensa-xtregs.c b/gdb/gdbserver/xtensa-xtregs.c index b29367e3c3e..048da7dbd94 100644 --- a/gdb/gdbserver/xtensa-xtregs.c +++ b/gdb/gdbserver/xtensa-xtregs.c @@ -1,5 +1,5 @@ /* Table mapping between kernel xtregset and GDB register cache. - Copyright 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2013 Free Software Foundation, Inc. This file is part of GDB. diff --git a/gdb/i386-darwin-nat.c b/gdb/i386-darwin-nat.c index 4ff5a5117cc..d7bd3457571 100644 --- a/gdb/i386-darwin-nat.c +++ b/gdb/i386-darwin-nat.c @@ -1,5 +1,5 @@ /* Darwin support for GDB, the GNU debugger. - Copyright 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2013 Free Software Foundation, Inc. Contributed by Apple Computer, Inc. diff --git a/gdb/i386-darwin-tdep.c b/gdb/i386-darwin-tdep.c index 22750f17f5d..f458aec367a 100644 --- a/gdb/i386-darwin-tdep.c +++ b/gdb/i386-darwin-tdep.c @@ -1,5 +1,5 @@ /* Darwin support for GDB, the GNU debugger. - Copyright 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2013 Free Software Foundation, Inc. Contributed by Apple Computer, Inc. diff --git a/gdb/linux-fork.h b/gdb/linux-fork.h index 3b5e3534228..6942da3ffb5 100644 --- a/gdb/linux-fork.h +++ b/gdb/linux-fork.h @@ -1,6 +1,6 @@ /* GNU/Linux native-dependent code for debugging multiple forks. - Copyright 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2013 Free Software Foundation, Inc. This file is part of GDB. diff --git a/gdb/m32c-tdep.c b/gdb/m32c-tdep.c index 4ecdb902695..1d773773a74 100644 --- a/gdb/m32c-tdep.c +++ b/gdb/m32c-tdep.c @@ -1,6 +1,6 @@ /* Renesas M32C target-dependent code for GDB, the GNU debugger. - Copyright 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2013 Free Software Foundation, Inc. This file is part of GDB. diff --git a/gdb/microblaze-linux-tdep.c b/gdb/microblaze-linux-tdep.c index 33be62d282e..99fc4976832 100644 --- a/gdb/microblaze-linux-tdep.c +++ b/gdb/microblaze-linux-tdep.c @@ -1,6 +1,6 @@ /* Target-dependent code for Xilinx MicroBlaze. - Copyright 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2013 Free Software Foundation, Inc. This file is part of GDB. diff --git a/gdb/microblaze-rom.c b/gdb/microblaze-rom.c index 19c4b052eab..2ff434342cb 100644 --- a/gdb/microblaze-rom.c +++ b/gdb/microblaze-rom.c @@ -1,6 +1,6 @@ /* Remote debugging interface to Xilinx MicroBlaze. - Copyright 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2013 Free Software Foundation, Inc. This file is part of GDB. diff --git a/gdb/microblaze-tdep.c b/gdb/microblaze-tdep.c index bf2737b51be..dcf556fb63c 100644 --- a/gdb/microblaze-tdep.c +++ b/gdb/microblaze-tdep.c @@ -1,6 +1,6 @@ /* Target-dependent code for Xilinx MicroBlaze. - Copyright 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2013 Free Software Foundation, Inc. This file is part of GDB. diff --git a/gdb/microblaze-tdep.h b/gdb/microblaze-tdep.h index 37ab7efa670..ff4515efe1e 100644 --- a/gdb/microblaze-tdep.h +++ b/gdb/microblaze-tdep.h @@ -1,6 +1,6 @@ /* Target-dependent code for Xilinx MicroBlaze. - Copyright 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2013 Free Software Foundation, Inc. This file is part of GDB. diff --git a/gdb/mips-linux-tdep.h b/gdb/mips-linux-tdep.h index d1ce0f66266..09cbc131146 100644 --- a/gdb/mips-linux-tdep.h +++ b/gdb/mips-linux-tdep.h @@ -1,6 +1,6 @@ /* Target-dependent code for GNU/Linux on MIPS processors. - Copyright 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2013 Free Software Foundation, Inc. This file is part of GDB. diff --git a/gdb/ppc-ravenscar-thread.c b/gdb/ppc-ravenscar-thread.c index 91b6f7ab9e1..1993fceda7b 100644 --- a/gdb/ppc-ravenscar-thread.c +++ b/gdb/ppc-ravenscar-thread.c @@ -1,6 +1,6 @@ /* Ravenscar PowerPC target support. - Copyright 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2013 Free Software Foundation, Inc. This file is part of GDB. diff --git a/gdb/ppc-ravenscar-thread.h b/gdb/ppc-ravenscar-thread.h index ab33708bd75..4acc937ca39 100644 --- a/gdb/ppc-ravenscar-thread.h +++ b/gdb/ppc-ravenscar-thread.h @@ -1,6 +1,6 @@ /* Ravenscar PowerPC target support. - Copyright 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2013 Free Software Foundation, Inc. This file is part of GDB. diff --git a/gdb/prologue-value.c b/gdb/prologue-value.c index 204ce0723bf..6c686181f00 100644 --- a/gdb/prologue-value.c +++ b/gdb/prologue-value.c @@ -1,5 +1,5 @@ /* Prologue value handling for GDB. - Copyright 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2013 Free Software Foundation, Inc. This file is part of GDB. diff --git a/gdb/prologue-value.h b/gdb/prologue-value.h index a7884cba53f..b8ed813140f 100644 --- a/gdb/prologue-value.h +++ b/gdb/prologue-value.h @@ -1,5 +1,5 @@ /* Interface to prologue value handling for GDB. - Copyright 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2013 Free Software Foundation, Inc. This file is part of GDB. diff --git a/gdb/ravenscar-thread.c b/gdb/ravenscar-thread.c index 70d7a8ba726..ae01760b93e 100644 --- a/gdb/ravenscar-thread.c +++ b/gdb/ravenscar-thread.c @@ -1,6 +1,6 @@ /* Ada Ravenscar thread support. - Copyright 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2013 Free Software Foundation, Inc. This file is part of GDB. diff --git a/gdb/ravenscar-thread.h b/gdb/ravenscar-thread.h index 6aa88fbc4e4..3500caf80b4 100644 --- a/gdb/ravenscar-thread.h +++ b/gdb/ravenscar-thread.h @@ -1,6 +1,6 @@ /* Ada Ravenscar thread support. - Copyright 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2013 Free Software Foundation, Inc. This file is part of GDB. diff --git a/gdb/regformats/regdat.sh b/gdb/regformats/regdat.sh index 8c46c58b2a2..be4e01e39b2 100755 --- a/gdb/regformats/regdat.sh +++ b/gdb/regformats/regdat.sh @@ -1,7 +1,7 @@ #!/bin/sh -u # Register protocol definitions for GDB, the GNU debugger. -# Copyright 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2013 Free Software Foundation, Inc. # # This file is part of GDB. # @@ -94,7 +94,7 @@ cat <