aboutsummaryrefslogtreecommitdiff
path: root/stdlib
diff options
context:
space:
mode:
authorSiddhesh Poyarekar <siddhesh@sourceware.org>2021-09-03 22:06:44 +0530
committerSiddhesh Poyarekar <siddhesh@sourceware.org>2021-09-03 22:06:44 +0530
commit30891f35fa7da832b66d80d0807610df361851f3 (patch)
tree684c81cc6e88650313797fadaa642d714fcce8a8 /stdlib
parent04f2125c6eff341f9c52682866d1eea8d204c852 (diff)
downloadglibc-30891f35fa7da832b66d80d0807610df361851f3.tar.xz
glibc-30891f35fa7da832b66d80d0807610df361851f3.zip
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 <carlos@redhat.com>
Diffstat (limited to 'stdlib')
-rw-r--r--stdlib/a64l.c1
-rw-r--r--stdlib/bug-strtod.c1
-rw-r--r--stdlib/drand48-iter.c1
-rw-r--r--stdlib/drand48.c1
-rw-r--r--stdlib/drand48_r.c1
-rw-r--r--stdlib/erand48.c1
-rw-r--r--stdlib/erand48_r.c1
-rw-r--r--stdlib/fmtmsg.c1
-rw-r--r--stdlib/grouping.c1
-rw-r--r--stdlib/grouping.h1
-rw-r--r--stdlib/isomac.c1
-rw-r--r--stdlib/jrand48.c1
-rw-r--r--stdlib/jrand48_r.c1
-rw-r--r--stdlib/l64a.c1
-rw-r--r--stdlib/lcong48.c1
-rw-r--r--stdlib/lcong48_r.c1
-rw-r--r--stdlib/lrand48.c1
-rw-r--r--stdlib/lrand48_r.c1
-rw-r--r--stdlib/mrand48.c1
-rw-r--r--stdlib/mrand48_r.c1
-rw-r--r--stdlib/msort.c1
-rw-r--r--stdlib/nrand48.c1
-rw-r--r--stdlib/nrand48_r.c1
-rw-r--r--stdlib/qsort.c1
-rw-r--r--stdlib/rand_r.c1
-rw-r--r--stdlib/seed48.c1
-rw-r--r--stdlib/seed48_r.c1
-rw-r--r--stdlib/srand48.c1
-rw-r--r--stdlib/srand48_r.c1
-rw-r--r--stdlib/strfmon.c2
-rw-r--r--stdlib/strfmon_l.c1
-rw-r--r--stdlib/strtod.c1
-rw-r--r--stdlib/strtod_l.c1
-rw-r--r--stdlib/strtof.c1
-rw-r--r--stdlib/strtof_l.c1
-rw-r--r--stdlib/strtol_l.c1
-rw-r--r--stdlib/strtold.c1
-rw-r--r--stdlib/strtoll_l.c1
-rw-r--r--stdlib/strtoul_l.c1
-rw-r--r--stdlib/strtoull_l.c1
-rw-r--r--stdlib/test-a64l.c1
-rw-r--r--stdlib/test-canon.c1
-rw-r--r--stdlib/test-canon2.c1
-rw-r--r--stdlib/testmb2.c1
-rw-r--r--stdlib/tst-bsearch.c1
-rw-r--r--stdlib/tst-qsort.c1
-rw-r--r--stdlib/tst-random.c1
-rw-r--r--stdlib/tst-random2.c1
-rw-r--r--stdlib/tst-system.c1
-rw-r--r--stdlib/tst-xpg-basename.c1
-rw-r--r--stdlib/xpg_basename.c1
51 files changed, 0 insertions, 52 deletions
diff --git a/stdlib/a64l.c b/stdlib/a64l.c
index 7da3383c49..368498259a 100644
--- a/stdlib/a64l.c
+++ b/stdlib/a64l.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 <drepper@gnu.org>, August 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/stdlib/bug-strtod.c b/stdlib/bug-strtod.c
index 5df2d40f33..20f08dbbda 100644
--- a/stdlib/bug-strtod.c
+++ b/stdlib/bug-strtod.c
@@ -1,7 +1,6 @@
/* Test to strtod etc for numbers like x000...0000.000e-nn.
This file is part of the GNU C Library.
Copyright (C) 2001-2021 Free Software Foundation, Inc.
- Contributed by Ulrich Drepper <drepper@redhat.com>, 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
diff --git a/stdlib/drand48-iter.c b/stdlib/drand48-iter.c
index 0868956428..75b7cd9899 100644
--- a/stdlib/drand48-iter.c
+++ b/stdlib/drand48-iter.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 <drepper@gnu.ai.mit.edu>, August 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/stdlib/drand48.c b/stdlib/drand48.c
index 5c62eba037..a9674aa413 100644
--- a/stdlib/drand48.c
+++ b/stdlib/drand48.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 <drepper@gnu.ai.mit.edu>, August 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/stdlib/drand48_r.c b/stdlib/drand48_r.c
index 6415775171..e5ddb730c1 100644
--- a/stdlib/drand48_r.c
+++ b/stdlib/drand48_r.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 <drepper@gnu.ai.mit.edu>, August 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/stdlib/erand48.c b/stdlib/erand48.c
index 2af1594162..95bebd21c1 100644
--- a/stdlib/erand48.c
+++ b/stdlib/erand48.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 <drepper@gnu.ai.mit.edu>, August 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/stdlib/erand48_r.c b/stdlib/erand48_r.c
index d4a1aeee2e..568f9e8b5d 100644
--- a/stdlib/erand48_r.c
+++ b/stdlib/erand48_r.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 <drepper@gnu.ai.mit.edu>, August 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/stdlib/fmtmsg.c b/stdlib/fmtmsg.c
index 428dad07ff..8bf2751550 100644
--- a/stdlib/fmtmsg.c
+++ b/stdlib/fmtmsg.c
@@ -1,6 +1,5 @@
/* Copyright (C) 1997-2021 Free Software Foundation, Inc.
This file is part of the GNU C Library.
- Contributed by Ulrich Drepper <drepper@cygnus.com>, 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/stdlib/grouping.c b/stdlib/grouping.c
index d558d9306f..ae90b91988 100644
--- a/stdlib/grouping.c
+++ b/stdlib/grouping.c
@@ -1,7 +1,6 @@
/* Internal header for proving correct grouping in strings of numbers.
Copyright (C) 1995-2021 Free Software Foundation, Inc.
This file is part of the GNU C Library.
- Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 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/stdlib/grouping.h b/stdlib/grouping.h
index f7d158fe72..9fe23a7c6c 100644
--- a/stdlib/grouping.h
+++ b/stdlib/grouping.h
@@ -1,7 +1,6 @@
/* Internal header for proving correct grouping in strings of numbers.
Copyright (C) 1995-2021 Free Software Foundation, Inc.
This file is part of the GNU C Library.
- Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 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/stdlib/isomac.c b/stdlib/isomac.c
index 16618e419d..8702ae4e8a 100644
--- a/stdlib/isomac.c
+++ b/stdlib/isomac.c
@@ -1,7 +1,6 @@
/* Check system header files for ISO 9899:1990 (ISO C) compliance.
Copyright (C) 1996-2021 Free Software Foundation, Inc.
This file is part of the GNU C Library.
- Contributed by Jens Schweikhardt <schweikh@noc.dfn.de>, 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/stdlib/jrand48.c b/stdlib/jrand48.c
index 07162bf62f..c8d111d459 100644
--- a/stdlib/jrand48.c
+++ b/stdlib/jrand48.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 <drepper@gnu.ai.mit.edu>, August 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/stdlib/jrand48_r.c b/stdlib/jrand48_r.c
index eb8058674c..5ae84ea948 100644
--- a/stdlib/jrand48_r.c
+++ b/stdlib/jrand48_r.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 <drepper@gnu.ai.mit.edu>, August 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/stdlib/l64a.c b/stdlib/l64a.c
index 84cd5ce5b7..bebdd024fc 100644
--- a/stdlib/l64a.c
+++ b/stdlib/l64a.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 <drepper@gnu.ai.mit.edu>, August 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/stdlib/lcong48.c b/stdlib/lcong48.c
index 55409d71f0..d2e80fdf12 100644
--- a/stdlib/lcong48.c
+++ b/stdlib/lcong48.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 <drepper@gnu.ai.mit.edu>, August 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/stdlib/lcong48_r.c b/stdlib/lcong48_r.c
index 60f69d4578..ccc3a43182 100644
--- a/stdlib/lcong48_r.c
+++ b/stdlib/lcong48_r.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 <drepper@gnu.ai.mit.edu>, August 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/stdlib/lrand48.c b/stdlib/lrand48.c
index a82c3a6544..750a93f0bf 100644
--- a/stdlib/lrand48.c
+++ b/stdlib/lrand48.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 <drepper@gnu.ai.mit.edu>, August 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/stdlib/lrand48_r.c b/stdlib/lrand48_r.c
index 2abd6591d5..42df3a34fe 100644
--- a/stdlib/lrand48_r.c
+++ b/stdlib/lrand48_r.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 <drepper@gnu.org>, August 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/stdlib/mrand48.c b/stdlib/mrand48.c
index d234a760b8..5db1a07652 100644
--- a/stdlib/mrand48.c
+++ b/stdlib/mrand48.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 <drepper@gnu.ai.mit.edu>, August 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/stdlib/mrand48_r.c b/stdlib/mrand48_r.c
index d4cf0819fe..1ac519fcf8 100644
--- a/stdlib/mrand48_r.c
+++ b/stdlib/mrand48_r.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 <drepper@gnu.ai.mit.edu>, August 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/stdlib/msort.c b/stdlib/msort.c
index 8750cc59db..2ef270262e 100644
--- a/stdlib/msort.c
+++ b/stdlib/msort.c
@@ -1,7 +1,6 @@
/* An alternative to qsort, with an identical interface.
This file is part of the GNU C Library.
Copyright (C) 1992-2021 Free Software Foundation, Inc.
- Written by Mike Haertel, September 1988.
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/stdlib/nrand48.c b/stdlib/nrand48.c
index 4dde921194..cc0e844a05 100644
--- a/stdlib/nrand48.c
+++ b/