From 30891f35fa7da832b66d80d0807610df361851f3 Mon Sep 17 00:00:00 2001 From: Siddhesh Poyarekar Date: Fri, 3 Sep 2021 22:06:44 +0530 Subject: Remove "Contributed by" lines We stopped adding "Contributed by" or similar lines in sources in 2012 in favour of git logs and keeping the Contributors section of the glibc manual up to date. Removing these lines makes the license header a bit more consistent across files and also removes the possibility of error in attribution when license blocks or files are copied across since the contributed-by lines don't actually reflect reality in those cases. Move all "Contributed by" and similar lines (Written by, Test by, etc.) into a new file CONTRIBUTED-BY to retain record of these contributions. These contributors are also mentioned in manual/contrib.texi, so we just maintain this additional record as a courtesy to the earlier developers. The following scripts were used to filter a list of files to edit in place and to clean up the CONTRIBUTED-BY file respectively. These were not added to the glibc sources because they're not expected to be of any use in future given that this is a one time task: https://gist.github.com/siddhesh/b5ecac94eabfd72ed2916d6d8157e7dc https://gist.github.com/siddhesh/15ea1f5e435ace9774f485030695ee02 Reviewed-by: Carlos O'Donell --- locale/C-address.c | 1 - locale/C-collate.c | 1 - locale/C-ctype.c | 1 - locale/C-identification.c | 1 - locale/C-measurement.c | 1 - locale/C-messages.c | 1 - locale/C-monetary.c | 1 - locale/C-name.c | 1 - locale/C-numeric.c | 1 - locale/C-paper.c | 1 - locale/C-telephone.c | 1 - locale/C-time.c | 1 - locale/C-translit.h.in | 1 - locale/bits/types/__locale_t.h | 1 - locale/broken_cur_max.c | 1 - locale/coll-lookup.c | 1 - locale/coll-lookup.h | 1 - locale/duplocale.c | 1 - locale/elem-hash.h | 1 - locale/findlocale.c | 1 - locale/freelocale.c | 1 - locale/hashval.h | 1 - locale/indigits.h | 1 - locale/indigitswc.h | 1 - locale/loadlocale.c | 1 - locale/mb_cur_max.c | 1 - locale/newlocale.c | 1 - locale/outdigits.h | 1 - locale/outdigitswc.h | 1 - locale/programs/charmap-kw.gperf | 1 - locale/programs/charmap-kw.h | 1 - locale/programs/charmap.c | 1 - locale/programs/charmap.h | 1 - locale/programs/config.h | 1 - locale/programs/ld-address.c | 1 - locale/programs/ld-collate.c | 1 - locale/programs/ld-ctype.c | 1 - locale/programs/ld-identification.c | 1 - locale/programs/ld-measurement.c | 1 - locale/programs/ld-messages.c | 1 - locale/programs/ld-monetary.c | 1 - locale/programs/ld-name.c | 1 - locale/programs/ld-numeric.c | 1 - locale/programs/ld-paper.c | 1 - locale/programs/ld-telephone.c | 1 - locale/programs/ld-time.c | 1 - locale/programs/linereader.c | 1 - locale/programs/linereader.h | 1 - locale/programs/locale-spec.c | 1 - locale/programs/locale.c | 1 - locale/programs/localedef.c | 1 - locale/programs/localedef.h | 1 - locale/programs/locarchive.c | 1 - locale/programs/locfile-kw.gperf | 1 - locale/programs/locfile-kw.h | 1 - locale/programs/locfile-token.h | 1 - locale/programs/locfile.c | 1 - locale/programs/locfile.h | 1 - locale/programs/repertoire.c | 1 - locale/programs/repertoire.h | 1 - locale/programs/simple-hash.c | 1 - locale/programs/simple-hash.h | 1 - locale/strlen-hash.h | 1 - locale/tst-C-locale.c | 1 - locale/weight.h | 1 - locale/weightwc.h | 1 - locale/xlocale.c | 1 - 67 files changed, 67 deletions(-) (limited to 'locale') diff --git a/locale/C-address.c b/locale/C-address.c index 1f9613a3e1..277b41bbb9 100644 --- a/locale/C-address.c +++ b/locale/C-address.c @@ -1,6 +1,5 @@ /* Copyright (C) 1998-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1998. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/locale/C-collate.c b/locale/C-collate.c index 76d9373683..02b70570a4 100644 --- a/locale/C-collate.c +++ b/locale/C-collate.c @@ -1,6 +1,5 @@ /* Copyright (C) 1995-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1995. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/locale/C-ctype.c b/locale/C-ctype.c index f3b02d8814..18effa44e1 100644 --- a/locale/C-ctype.c +++ b/locale/C-ctype.c @@ -1,6 +1,5 @@ /* Copyright (C) 1995-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1995. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/locale/C-identification.c b/locale/C-identification.c index ccfbf4cb91..b403cbf8f5 100644 --- a/locale/C-identification.c +++ b/locale/C-identification.c @@ -1,6 +1,5 @@ /* Copyright (C) 1998-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1998. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/locale/C-measurement.c b/locale/C-measurement.c index 7f3266e67a..b3ce9eb45c 100644 --- a/locale/C-measurement.c +++ b/locale/C-measurement.c @@ -1,6 +1,5 @@ /* Copyright (C) 1998-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1998. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/locale/C-messages.c b/locale/C-messages.c index 923e26ab05..dad057ed72 100644 --- a/locale/C-messages.c +++ b/locale/C-messages.c @@ -1,6 +1,5 @@ /* Copyright (C) 1995-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1995. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/locale/C-monetary.c b/locale/C-monetary.c index 1cb9c9a6e2..1c919c5d08 100644 --- a/locale/C-monetary.c +++ b/locale/C-monetary.c @@ -1,6 +1,5 @@ /* Copyright (C) 1995-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1995. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/locale/C-name.c b/locale/C-name.c index ec88a466f9..979d794641 100644 --- a/locale/C-name.c +++ b/locale/C-name.c @@ -1,6 +1,5 @@ /* Copyright (C) 1998-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1998. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/locale/C-numeric.c b/locale/C-numeric.c index 56c8649c49..2e3251f1bb 100644 --- a/locale/C-numeric.c +++ b/locale/C-numeric.c @@ -1,6 +1,5 @@ /* Copyright (C) 1995-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1995. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/locale/C-paper.c b/locale/C-paper.c index b40dd943e3..f63b42ea21 100644 --- a/locale/C-paper.c +++ b/locale/C-paper.c @@ -1,6 +1,5 @@ /* Copyright (C) 1998-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1998. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/locale/C-telephone.c b/locale/C-telephone.c index 49611f7d56..32b0921d1c 100644 --- a/locale/C-telephone.c +++ b/locale/C-telephone.c @@ -1,6 +1,5 @@ /* Copyright (C) 1998-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1998. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/locale/C-time.c b/locale/C-time.c index 9e711bd422..c55598e291 100644 --- a/locale/C-time.c +++ b/locale/C-time.c @@ -1,6 +1,5 @@ /* Copyright (C) 1995-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1995. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/locale/C-translit.h.in b/locale/C-translit.h.in index 8db2e7d226..1889c9d167 100644 --- a/locale/C-translit.h.in +++ b/locale/C-translit.h.in @@ -1,7 +1,6 @@ # Transliteration for the C locale. -*-C-*- # Copyright (C) 2000-2021 Free Software Foundation, Inc. # This file is part of the GNU C Library. -# Contributed by Ulrich Drepper , 2000. # # The GNU C Library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/locale/bits/types/__locale_t.h b/locale/bits/types/__locale_t.h index b0742bfb28..dda8814a1e 100644 --- a/locale/bits/types/__locale_t.h +++ b/locale/bits/types/__locale_t.h @@ -1,7 +1,6 @@ /* Definition of struct __locale_struct and __locale_t. Copyright (C) 1997-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1997. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/locale/broken_cur_max.c b/locale/broken_cur_max.c index 4f7bf2fb0e..d14b2a8247 100644 --- a/locale/broken_cur_max.c +++ b/locale/broken_cur_max.c @@ -2,7 +2,6 @@ character set. Copyright (C) 1996-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1996. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/locale/coll-lookup.c b/locale/coll-lookup.c index 91a365c628..baa6344c4f 100644 --- a/locale/coll-lookup.c +++ b/locale/coll-lookup.c @@ -1,6 +1,5 @@ /* Copyright (C) 2000-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Bruno Haible , 2000. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/locale/coll-lookup.h b/locale/coll-lookup.h index db6ba90a1b..b388220ca7 100644 --- a/locale/coll-lookup.h +++ b/locale/coll-lookup.h @@ -1,6 +1,5 @@ /* Copyright (C) 2000-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Bruno Haible , 2000. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/locale/duplocale.c b/locale/duplocale.c index bb5d24bdda..d590206116 100644 --- a/locale/duplocale.c +++ b/locale/duplocale.c @@ -1,7 +1,6 @@ /* Duplicate handle for selection of locales. Copyright (C) 1997-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1997. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/locale/elem-hash.h b/locale/elem-hash.h index 3e07fefdd9..6c29f8aba5 100644 --- a/locale/elem-hash.h +++ b/locale/elem-hash.h @@ -1,6 +1,5 @@ /* Copyright (C) 1999-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Written by Ulrich Drepper, . The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/locale/findlocale.c b/locale/findlocale.c index ab09122b0c..5986373edd 100644 --- a/locale/findlocale.c +++ b/locale/findlocale.c @@ -1,6 +1,5 @@ /* Copyright (C) 1996-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1996. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/locale/freelocale.c b/locale/freelocale.c index 9a4379a173..1bfbb909bd 100644 --- a/locale/freelocale.c +++ b/locale/freelocale.c @@ -1,7 +1,6 @@ /* Free data allocated by a call to setlocale_r Copyright (C) 1996-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1996. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/locale/hashval.h b/locale/hashval.h index 2522d80be4..08e29812ff 100644 --- a/locale/hashval.h +++ b/locale/hashval.h @@ -1,7 +1,6 @@ /* Implement simple hashing table with string based keys. Copyright (C) 1994-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Written by Ulrich Drepper , October 1994. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/locale/indigits.h b/locale/indigits.h index d86877a25a..d30aa3015d 100644 --- a/locale/indigits.h +++ b/locale/indigits.h @@ -1,6 +1,5 @@ /* Copyright (C) 2000-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 2000. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/locale/indigitswc.h b/locale/indigitswc.h index 1eb699f264..14c2c93708 100644 --- a/locale/indigitswc.h +++ b/locale/indigitswc.h @@ -1,6 +1,5 @@ /* Copyright (C) 2000-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 2000. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/locale/loadlocale.c b/locale/loadlocale.c index f4e6cc9fc2..9dc0ce5a28 100644 --- a/locale/loadlocale.c +++ b/locale/loadlocale.c @@ -1,7 +1,6 @@ /* Functions to read locale data files. Copyright (C) 1996-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1996. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/locale/mb_cur_max.c b/locale/mb_cur_max.c index a7be0cb25a..b933b643c7 100644 --- a/locale/mb_cur_max.c +++ b/locale/mb_cur_max.c @@ -2,7 +2,6 @@ character set. Copyright (C) 1996-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1996. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/locale/newlocale.c b/locale/newlocale.c index 236dc1d6e8..96d0a4d66d 100644 --- a/locale/newlocale.c +++ b/locale/newlocale.c @@ -1,7 +1,6 @@ /* Return a reference to locale information record. Copyright (C) 1996-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1996. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/locale/outdigits.h b/locale/outdigits.h index 22fc0ad849..0b2557e9a0 100644 --- a/locale/outdigits.h +++ b/locale/outdigits.h @@ -1,6 +1,5 @@ /* Copyright (C) 2000-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 2000. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/locale/outdigitswc.h b/locale/outdigitswc.h index c26ad2335e..26ffcaeedf 100644 --- a/locale/outdigitswc.h +++ b/locale/outdigitswc.h @@ -1,6 +1,5 @@ /* Copyright (C) 2000-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 2000. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/locale/programs/charmap-kw.gperf b/locale/programs/charmap-kw.gperf index fcafa57636..68c5253021 100644 --- a/locale/programs/charmap-kw.gperf +++ b/locale/programs/charmap-kw.gperf @@ -1,7 +1,6 @@ %{ /* Copyright (C) 1995-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper, . This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published diff --git a/locale/programs/charmap-kw.h b/locale/programs/charmap-kw.h index f143dfc341..7f93c23f81 100644 --- a/locale/programs/charmap-kw.h +++ b/locale/programs/charmap-kw.h @@ -32,7 +32,6 @@ /* Copyright (C) 1995-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper, . This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published diff --git a/locale/programs/charmap.c b/locale/programs/charmap.c index 3d51e702dc..1df7c180c0 100644 --- a/locale/programs/charmap.c +++ b/locale/programs/charmap.c @@ -1,6 +1,5 @@ /* Copyright (C) 1996-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1996. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published diff --git a/locale/programs/charmap.h b/locale/programs/charmap.h index ab9205ef73..83bbeb4eb6 100644 --- a/locale/programs/charmap.h +++ b/locale/programs/charmap.h @@ -1,6 +1,5 @@ /* Copyright (C) 1996-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1996. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published diff --git a/locale/programs/config.h b/locale/programs/config.h index 2edcf3696c..f959419e29 100644 --- a/locale/programs/config.h +++ b/locale/programs/config.h @@ -1,7 +1,6 @@ /* Configuration for localedef program. Copyright (C) 1995-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1995. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published diff --git a/locale/programs/ld-address.c b/locale/programs/ld-address.c index 8351f8c994..c5cd70b91a 100644 --- a/locale/programs/ld-address.c +++ b/locale/programs/ld-address.c @@ -1,6 +1,5 @@ /* Copyright (C) 1998-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1998. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published diff --git a/locale/programs/ld-collate.c b/locale/programs/ld-collate.c index b6406b775d..f4a8f34e46 100644 --- a/locale/programs/ld-collate.c +++ b/locale/programs/ld-collate.c @@ -1,6 +1,5 @@ /* Copyright (C) 1995-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1995. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published diff --git a/locale/programs/ld-ctype.c b/locale/programs/ld-ctype.c index 2fb579bbbf..07b64ac5a1 100644 --- a/locale/programs/ld-ctype.c +++ b/locale/programs/ld-ctype.c @@ -1,6 +1,5 @@ /* Copyright (C) 1995-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1995. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published diff --git a/locale/programs/ld-identification.c b/locale/programs/ld-identification.c index f133ae97a5..7c7fa05654 100644 --- a/locale/programs/ld-identification.c +++ b/locale/programs/ld-identification.c @@ -1,6 +1,5 @@ /* Copyright (C) 1998-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1998. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published diff --git a/locale/programs/ld-measurement.c b/locale/programs/ld-measurement.c index c0fc5bf26e..7dcc400d62 100644 --- a/locale/programs/ld-measurement.c +++ b/locale/programs/ld-measurement.c @@ -1,6 +1,5 @@ /* Copyright (C) 1998-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1998. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published diff --git a/locale/programs/ld-messages.c b/locale/programs/ld-messages.c index 17d5dd6c08..14f2c405c7 100644 --- a/locale/programs/ld-messages.c +++ b/locale/programs/ld-messages.c @@ -1,6 +1,5 @@ /* Copyright (C) 1995-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1995. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published diff --git a/locale/programs/ld-monetary.c b/locale/programs/ld-monetary.c index e1e45a3409..3f585b2410 100644 --- a/locale/programs/ld-monetary.c +++ b/locale/programs/ld-monetary.c @@ -1,6 +1,5 @@ /* Copyright (C) 1995-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1995. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published diff --git a/locale/programs/ld-name.c b/locale/programs/ld-name.c index 43f4cc4bb1..d4dc817896 100644 --- a/locale/programs/ld-name.c +++ b/locale/programs/ld-name.c @@ -1,6 +1,5 @@ /* Copyright (C) 1998-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1998. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published diff --git a/locale/programs/ld-numeric.c b/locale/programs/ld-numeric.c index 7c949a60f4..6611fbd029 100644 --- a/locale/programs/ld-numeric.c +++ b/locale/programs/ld-numeric.c @@ -1,6 +1,5 @@ /* Copyright (C) 1995-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1995. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published diff --git a/locale/programs/ld-paper.c b/locale/programs/ld-paper.c index e6d17683c6..1750525d01 100644 --- a/locale/programs/ld-paper.c +++ b/locale/programs/ld-paper.c @@ -1,6 +1,5 @@ /* Copyright (C) 1998-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1998. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published diff --git a/locale/programs/ld-telephone.c b/locale/programs/ld-telephone.c index 767940872d..af540e6e68 100644 --- a/locale/programs/ld-telephone.c +++ b/locale/programs/ld-telephone.c @@ -1,6 +1,5 @@ /* Copyright (C) 1998-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1998. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published diff --git a/locale/programs/ld-time.c b/locale/programs/ld-time.c index dcd2a2386d..e6f320d2b3 100644 --- a/locale/programs/ld-time.c +++ b/locale/programs/ld-time.c @@ -1,6 +1,5 @@ /* Copyright (C) 1995-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1995. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published diff --git a/locale/programs/linereader.c b/locale/programs/linereader.c index 96d3ab66db..a1f22b28ed 100644 --- a/locale/programs/linereader.c +++ b/locale/programs/linereader.c @@ -1,6 +1,5 @@ /* Copyright (C) 1996-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1996. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published diff --git a/locale/programs/linereader.h b/locale/programs/linereader.h index b47e6b63cf..3e2fb5da4a 100644 --- a/locale/programs/linereader.h +++ b/locale/programs/linereader.h @@ -1,6 +1,5 @@ /* Copyright (C) 1996-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper, . This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published diff --git a/locale/programs/locale-spec.c b/locale/programs/locale-spec.c index 3985bb125f..405e7dbaa5 100644 --- a/locale/programs/locale-spec.c +++ b/locale/programs/locale-spec.c @@ -1,7 +1,6 @@ /* Handle special requests. Copyright (C) 1996-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1996. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published diff --git a/locale/programs/locale.c b/locale/programs/locale.c index ca0a95be99..e9275d6b83 100644 --- a/locale/programs/locale.c +++ b/locale/programs/locale.c @@ -1,7 +1,6 @@ /* Implementation of the locale program according to POSIX 9945-2. Copyright (C) 1995-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1995. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published diff --git a/locale/programs/localedef.c b/locale/programs/localedef.c index 832c8fd1fc..f0da25e9e5 100644 --- a/locale/programs/localedef.c +++ b/locale/programs/localedef.c @@ -1,6 +1,5 @@ /* Copyright (C) 1995-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1995. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published diff --git a/locale/programs/localedef.h b/locale/programs/localedef.h index 59eb8c5920..5be4eac9c1 100644 --- a/locale/programs/localedef.h +++ b/locale/programs/localedef.h @@ -1,7 +1,6 @@ /* General definitions for localedef(1). Copyright (C) 1998-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1998. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published diff --git a/locale/programs/locarchive.c b/locale/programs/locarchive.c index f38e835c52..eeec3ab648 100644 --- a/locale/programs/locarchive.c +++ b/locale/programs/locarchive.c @@ -1,6 +1,5 @@ /* Copyright (C) 2002-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 2002. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published diff --git a/locale/programs/locfile-kw.gperf b/locale/programs/locfile-kw.gperf index bcded15ddb..0d3b95d77b 100644 --- a/locale/programs/locfile-kw.gperf +++ b/locale/programs/locfile-kw.gperf @@ -1,7 +1,6 @@ %{ /* Copyright (C) 1996-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1996. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published diff --git a/locale/programs/locfile-kw.h b/locale/programs/locfile-kw.h index bc1cb8f084..dc150bb8f8 100644 --- a/locale/programs/locfile-kw.h +++ b/locale/programs/locfile-kw.h @@ -32,7 +32,6 @@ /* Copyright (C) 1996-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1996. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published diff --git a/locale/programs/locfile-token.h b/locale/programs/locfile-token.h index 414ad30762..abeff8a09e 100644 --- a/locale/programs/locfile-token.h +++ b/locale/programs/locfile-token.h @@ -1,6 +1,5 @@ /* Copyright (C) 1996-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1996. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published diff --git a/locale/programs/locfile.c b/locale/programs/locfile.c index 0f1affa1d4..1427b518a9 100644 --- a/locale/programs/locfile.c +++ b/locale/programs/locfile.c @@ -1,6 +1,5 @@ /* Copyright (C) 1996-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1996. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published diff --git a/locale/programs/locfile.h b/locale/programs/locfile.h index c986d599ec..cbc20fe88d 100644 --- a/locale/programs/locfile.h +++ b/locale/programs/locfile.h @@ -1,6 +1,5 @@ /* Copyright (C) 1996-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1996. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published diff --git a/locale/programs/repertoire.c b/locale/programs/repertoire.c index e24475a4e5..f7867560d0 100644 --- a/locale/programs/repertoire.c +++ b/locale/programs/repertoire.c @@ -1,6 +1,5 @@ /* Copyright (C) 1998-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1998. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published diff --git a/locale/programs/repertoire.h b/locale/programs/repertoire.h index e89c047c4d..35308d0677 100644 --- a/locale/programs/repertoire.h +++ b/locale/programs/repertoire.h @@ -1,6 +1,5 @@ /* Copyright (C) 1998-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1998. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published diff --git a/locale/programs/simple-hash.c b/locale/programs/simple-hash.c index 1fbc3b80f0..0aaa14d149 100644 --- a/locale/programs/simple-hash.c +++ b/locale/programs/simple-hash.c @@ -1,7 +1,6 @@ /* Implement simple hashing table with string based keys. Copyright (C) 1994-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Written by Ulrich Drepper , October 1994. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published diff --git a/locale/programs/simple-hash.h b/locale/programs/simple-hash.h index b9eee4dd05..a9c83db576 100644 --- a/locale/programs/simple-hash.h +++ b/locale/programs/simple-hash.h @@ -1,6 +1,5 @@ /* Copyright (C) 1995-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1995. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published diff --git a/locale/strlen-hash.h b/locale/strlen-hash.h index 3c3558e845..9c12961d93 100644 --- a/locale/strlen-hash.h +++ b/locale/strlen-hash.h @@ -1,7 +1,6 @@ /* Implements hashing function for string with known length. Copyright (C) 1996-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1996. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/locale/tst-C-locale.c b/locale/tst-C-locale.c index 353500f8ad..3b55cce299 100644 --- a/locale/tst-C-locale.c +++ b/locale/tst-C-locale.c @@ -1,7 +1,6 @@ /* Tests of C and POSIX locale contents. Copyright (C) 2000-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 2000. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/locale/weight.h b/locale/weight.h index 723e1fefda..076529c0ba 100644 --- a/locale/weight.h +++ b/locale/weight.h @@ -1,6 +1,5 @@ /* Copyright (C) 1996-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Written by Ulrich Drepper, . The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/locale/weightwc.h b/locale/weightwc.h index 3f125eeaa9..77da492564 100644 --- a/locale/weightwc.h +++ b/locale/weightwc.h @@ -1,6 +1,5 @@ /* Copyright (C) 1996-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Written by Ulrich Drepper, . The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/locale/xlocale.c b/locale/xlocale.c index be72b5a1b0..33223da99f 100644 --- a/locale/xlocale.c +++ b/locale/xlocale.c @@ -1,7 +1,6 @@ /* C locale object. Copyright (C) 2001-2021 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 2001. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public -- cgit 1.4.1