diff options
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/at-func.c | 2 | ||||
| -rw-r--r-- | lib/close-stream.c | 2 | ||||
| -rw-r--r-- | lib/dup2.c | 5 | ||||
| -rw-r--r-- | lib/euidaccess.c | 2 | ||||
| -rw-r--r-- | lib/faccessat.c | 2 | ||||
| -rw-r--r-- | lib/fcntl.in.h | 2 | ||||
| -rw-r--r-- | lib/filemode.c | 2 | ||||
| -rw-r--r-- | lib/fpending.c | 2 | ||||
| -rw-r--r-- | lib/fpending.h | 2 | ||||
| -rw-r--r-- | lib/getgroups.c | 2 | ||||
| -rw-r--r-- | lib/gnulib.mk | 2 | ||||
| -rw-r--r-- | lib/group-member.c | 2 | ||||
| -rw-r--r-- | lib/lstat.c | 2 | ||||
| -rw-r--r-- | lib/md5.c | 2 | ||||
| -rw-r--r-- | lib/putenv.c | 2 | ||||
| -rw-r--r-- | lib/root-uid.h | 2 | ||||
| -rw-r--r-- | lib/sha1.c | 2 | ||||
| -rw-r--r-- | lib/sha256.c | 2 | ||||
| -rw-r--r-- | lib/sha512.c | 2 | ||||
| -rw-r--r-- | lib/sig2str.c | 2 | ||||
| -rw-r--r-- | lib/sig2str.h | 2 | ||||
| -rw-r--r-- | lib/stat.c | 2 | ||||
| -rw-r--r-- | lib/stdio.in.h | 2 | ||||
| -rw-r--r-- | lib/sys_stat.in.h | 2 | ||||
| -rw-r--r-- | lib/unistd.in.h | 2 | ||||
| -rw-r--r-- | lib/unsetenv.c | 2 | ||||
| -rw-r--r-- | lib/xalloc-oversized.h | 2 |
27 files changed, 30 insertions, 27 deletions
diff --git a/lib/at-func.c b/lib/at-func.c index 481eea475a1..03c56788b08 100644 --- a/lib/at-func.c +++ b/lib/at-func.c | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* Define at-style functions like fstatat, unlinkat, fchownat, etc. | 1 | /* Define at-style functions like fstatat, unlinkat, fchownat, etc. |
| 2 | Copyright (C) 2006, 2009-2012 Free Software Foundation, Inc. | 2 | Copyright (C) 2006, 2009-2013 Free Software Foundation, Inc. |
| 3 | 3 | ||
| 4 | This program is free software: you can redistribute it and/or modify | 4 | This program is free software: you can redistribute it and/or modify |
| 5 | it under the terms of the GNU General Public License as published by | 5 | it under the terms of the GNU General Public License as published by |
diff --git a/lib/close-stream.c b/lib/close-stream.c index 04fa5ece09d..d6a869287e3 100644 --- a/lib/close-stream.c +++ b/lib/close-stream.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* Close a stream, with nicer error checking than fclose's. | 1 | /* Close a stream, with nicer error checking than fclose's. |
| 2 | 2 | ||
| 3 | Copyright (C) 1998-2002, 2004, 2006-2012 Free Software Foundation, Inc. | 3 | Copyright (C) 1998-2002, 2004, 2006-2013 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | This program is free software: you can redistribute it and/or modify | 5 | This program is free software: you can redistribute it and/or modify |
| 6 | it under the terms of the GNU General Public License as published by | 6 | it under the terms of the GNU General Public License as published by |
diff --git a/lib/dup2.c b/lib/dup2.c index f6d0f1c73c5..9219eb38238 100644 --- a/lib/dup2.c +++ b/lib/dup2.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* Duplicate an open file descriptor to a specified file descriptor. | 1 | /* Duplicate an open file descriptor to a specified file descriptor. |
| 2 | 2 | ||
| 3 | Copyright (C) 1999, 2004-2007, 2009-2012 Free Software Foundation, Inc. | 3 | Copyright (C) 1999, 2004-2007, 2009-2013 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | This program is free software: you can redistribute it and/or modify | 5 | This program is free software: you can redistribute it and/or modify |
| 6 | it under the terms of the GNU General Public License as published by | 6 | it under the terms of the GNU General Public License as published by |
| @@ -95,7 +95,10 @@ rpl_dup2 (int fd, int desired_fd) | |||
| 95 | # ifdef F_GETFL | 95 | # ifdef F_GETFL |
| 96 | /* On Linux kernels 2.6.26-2.6.29, dup2 (fd, fd) returns -EBADF. | 96 | /* On Linux kernels 2.6.26-2.6.29, dup2 (fd, fd) returns -EBADF. |
| 97 | On Cygwin 1.5.x, dup2 (1, 1) returns 0. | 97 | On Cygwin 1.5.x, dup2 (1, 1) returns 0. |
| 98 | On Cygwin 1.7.17, dup2 (1, -1) dumps core. | ||
| 98 | On Haiku, dup2 (fd, fd) mistakenly clears FD_CLOEXEC. */ | 99 | On Haiku, dup2 (fd, fd) mistakenly clears FD_CLOEXEC. */ |
| 100 | if (desired_fd < 0) | ||
| 101 | fd = desired_fd; | ||
| 99 | if (fd == desired_fd) | 102 | if (fd == desired_fd) |
| 100 | return fcntl (fd, F_GETFL) == -1 ? -1 : fd; | 103 | return fcntl (fd, F_GETFL) == -1 ? -1 : fd; |
| 101 | # endif | 104 | # endif |
diff --git a/lib/euidaccess.c b/lib/euidaccess.c index ca2ceca5d22..f73438e6f47 100644 --- a/lib/euidaccess.c +++ b/lib/euidaccess.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* euidaccess -- check if effective user id can access file | 1 | /* euidaccess -- check if effective user id can access file |
| 2 | 2 | ||
| 3 | Copyright (C) 1990-1991, 1995, 1998, 2000, 2003-2006, 2008-2012 Free | 3 | Copyright (C) 1990-1991, 1995, 1998, 2000, 2003-2006, 2008-2013 Free |
| 4 | Software Foundation, Inc. | 4 | Software Foundation, Inc. |
| 5 | 5 | ||
| 6 | This file is part of the GNU C Library. | 6 | This file is part of the GNU C Library. |
diff --git a/lib/faccessat.c b/lib/faccessat.c index d11a3efaad6..f3c3f6736d2 100644 --- a/lib/faccessat.c +++ b/lib/faccessat.c | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* Check the access rights of a file relative to an open directory. | 1 | /* Check the access rights of a file relative to an open directory. |
| 2 | Copyright (C) 2009-2012 Free Software Foundation, Inc. | 2 | Copyright (C) 2009-2013 Free Software Foundation, Inc. |
| 3 | 3 | ||
| 4 | This program is free software: you can redistribute it and/or modify | 4 | This program is free software: you can redistribute it and/or modify |
| 5 | it under the terms of the GNU General Public License as published by | 5 | it under the terms of the GNU General Public License as published by |
diff --git a/lib/fcntl.in.h b/lib/fcntl.in.h index 604c31b7984..1e45a65a213 100644 --- a/lib/fcntl.in.h +++ b/lib/fcntl.in.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* Like <fcntl.h>, but with non-working flags defined to 0. | 1 | /* Like <fcntl.h>, but with non-working flags defined to 0. |
| 2 | 2 | ||
| 3 | Copyright (C) 2006-2012 Free Software Foundation, Inc. | 3 | Copyright (C) 2006-2013 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | This program is free software: you can redistribute it and/or modify | 5 | This program is free software: you can redistribute it and/or modify |
| 6 | it under the terms of the GNU General Public License as published by | 6 | it under the terms of the GNU General Public License as published by |
diff --git a/lib/filemode.c b/lib/filemode.c index 24ffeae7c99..9e8735a5d7d 100644 --- a/lib/filemode.c +++ b/lib/filemode.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* filemode.c -- make a string describing file modes | 1 | /* filemode.c -- make a string describing file modes |
| 2 | 2 | ||
| 3 | Copyright (C) 1985, 1990, 1993, 1998-2000, 2004, 2006, 2009-2012 Free | 3 | Copyright (C) 1985, 1990, 1993, 1998-2000, 2004, 2006, 2009-2013 Free |
| 4 | Software Foundation, Inc. | 4 | Software Foundation, Inc. |
| 5 | 5 | ||
| 6 | This program is free software: you can redistribute it and/or modify | 6 | This program is free software: you can redistribute it and/or modify |
diff --git a/lib/fpending.c b/lib/fpending.c index 2591d534377..e917f4f15f6 100644 --- a/lib/fpending.c +++ b/lib/fpending.c | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* fpending.c -- return the number of pending output bytes on a stream | 1 | /* fpending.c -- return the number of pending output bytes on a stream |
| 2 | Copyright (C) 2000, 2004, 2006-2007, 2009-2012 Free Software Foundation, | 2 | Copyright (C) 2000, 2004, 2006-2007, 2009-2013 Free Software Foundation, |
| 3 | Inc. | 3 | Inc. |
| 4 | 4 | ||
| 5 | This program is free software: you can redistribute it and/or modify | 5 | This program is free software: you can redistribute it and/or modify |
diff --git a/lib/fpending.h b/lib/fpending.h index 0365287ba76..bf40d3732e7 100644 --- a/lib/fpending.h +++ b/lib/fpending.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* Declare __fpending. | 1 | /* Declare __fpending. |
| 2 | 2 | ||
| 3 | Copyright (C) 2000, 2003, 2005-2006, 2009-2012 Free Software Foundation, | 3 | Copyright (C) 2000, 2003, 2005-2006, 2009-2013 Free Software Foundation, |
| 4 | Inc. | 4 | Inc. |
| 5 | 5 | ||
| 6 | This program is free software: you can redistribute it and/or modify | 6 | This program is free software: you can redistribute it and/or modify |
diff --git a/lib/getgroups.c b/lib/getgroups.c index f9d36236afe..9856adc1a4d 100644 --- a/lib/getgroups.c +++ b/lib/getgroups.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* provide consistent interface to getgroups for systems that don't allow N==0 | 1 | /* provide consistent interface to getgroups for systems that don't allow N==0 |
| 2 | 2 | ||
| 3 | Copyright (C) 1996, 1999, 2003, 2006-2012 Free Software Foundation, Inc. | 3 | Copyright (C) 1996, 1999, 2003, 2006-2013 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | This program is free software: you can redistribute it and/or modify | 5 | This program is free software: you can redistribute it and/or modify |
| 6 | it under the terms of the GNU General Public License as published by | 6 | it under the terms of the GNU General Public License as published by |
diff --git a/lib/gnulib.mk b/lib/gnulib.mk index 420520fbce7..ca628a28da4 100644 --- a/lib/gnulib.mk +++ b/lib/gnulib.mk | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ## DO NOT EDIT! GENERATED AUTOMATICALLY! | 1 | ## DO NOT EDIT! GENERATED AUTOMATICALLY! |
| 2 | ## Process this file with automake to produce Makefile.in. | 2 | ## Process this file with automake to produce Makefile.in. |
| 3 | # Copyright (C) 2002-2012 Free Software Foundation, Inc. | 3 | # Copyright (C) 2002-2013 Free Software Foundation, Inc. |
| 4 | # | 4 | # |
| 5 | # This file is free software; you can redistribute it and/or modify | 5 | # This file is free software; you can redistribute it and/or modify |
| 6 | # it under the terms of the GNU General Public License as published by | 6 | # it under the terms of the GNU General Public License as published by |
diff --git a/lib/group-member.c b/lib/group-member.c index 5fcc7e01d0c..da015842c21 100644 --- a/lib/group-member.c +++ b/lib/group-member.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* group-member.c -- determine whether group id is in calling user's group list | 1 | /* group-member.c -- determine whether group id is in calling user's group list |
| 2 | 2 | ||
| 3 | Copyright (C) 1994, 1997-1998, 2003, 2005-2006, 2009-2012 Free Software | 3 | Copyright (C) 1994, 1997-1998, 2003, 2005-2006, 2009-2013 Free Software |
| 4 | Foundation, Inc. | 4 | Foundation, Inc. |
| 5 | 5 | ||
| 6 | This program is free software: you can redistribute it and/or modify | 6 | This program is free software: you can redistribute it and/or modify |
diff --git a/lib/lstat.c b/lib/lstat.c index 97fe6bb2d53..1a613a89c8d 100644 --- a/lib/lstat.c +++ b/lib/lstat.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* Work around a bug of lstat on some systems | 1 | /* Work around a bug of lstat on some systems |
| 2 | 2 | ||
| 3 | Copyright (C) 1997-2006, 2008-2012 Free Software Foundation, Inc. | 3 | Copyright (C) 1997-2006, 2008-2013 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | This program is free software: you can redistribute it and/or modify | 5 | This program is free software: you can redistribute it and/or modify |
| 6 | it under the terms of the GNU General Public License as published by | 6 | it under the terms of the GNU General Public License as published by |
| @@ -1,6 +1,6 @@ | |||
| 1 | /* Functions to compute MD5 message digest of files or memory blocks. | 1 | /* Functions to compute MD5 message digest of files or memory blocks. |
| 2 | according to the definition of MD5 in RFC 1321 from April 1992. | 2 | according to the definition of MD5 in RFC 1321 from April 1992. |
| 3 | Copyright (C) 1995-1997, 1999-2001, 2005-2006, 2008-2012 Free Software | 3 | Copyright (C) 1995-1997, 1999-2001, 2005-2006, 2008-2013 Free Software |
| 4 | Foundation, Inc. | 4 | Foundation, Inc. |
| 5 | This file is part of the GNU C Library. | 5 | This file is part of the GNU C Library. |
| 6 | 6 | ||
diff --git a/lib/putenv.c b/lib/putenv.c index 3c0f7ead330..5f0fedaf9cc 100644 --- a/lib/putenv.c +++ b/lib/putenv.c | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* Copyright (C) 1991, 1994, 1997-1998, 2000, 2003-2012 Free Software | 1 | /* Copyright (C) 1991, 1994, 1997-1998, 2000, 2003-2013 Free Software |
| 2 | Foundation, Inc. | 2 | Foundation, Inc. |
| 3 | 3 | ||
| 4 | NOTE: The canonical source of this file is maintained with the GNU C | 4 | NOTE: The canonical source of this file is maintained with the GNU C |
diff --git a/lib/root-uid.h b/lib/root-uid.h index 2379773c291..c75d88891ed 100644 --- a/lib/root-uid.h +++ b/lib/root-uid.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* The user ID that always has appropriate privileges in the POSIX sense. | 1 | /* The user ID that always has appropriate privileges in the POSIX sense. |
| 2 | 2 | ||
| 3 | Copyright 2012 Free Software Foundation, Inc. | 3 | Copyright 2012-2013 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | This program is free software: you can redistribute it and/or modify | 5 | This program is free software: you can redistribute it and/or modify |
| 6 | it under the terms of the GNU General Public License as published by | 6 | it under the terms of the GNU General Public License as published by |
diff --git a/lib/sha1.c b/lib/sha1.c index b9505dd9467..778389affc5 100644 --- a/lib/sha1.c +++ b/lib/sha1.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* sha1.c - Functions to compute SHA1 message digest of files or | 1 | /* sha1.c - Functions to compute SHA1 message digest of files or |
| 2 | memory blocks according to the NIST specification FIPS-180-1. | 2 | memory blocks according to the NIST specification FIPS-180-1. |
| 3 | 3 | ||
| 4 | Copyright (C) 2000-2001, 2003-2006, 2008-2012 Free Software Foundation, Inc. | 4 | Copyright (C) 2000-2001, 2003-2006, 2008-2013 Free Software Foundation, Inc. |
| 5 | 5 | ||
| 6 | This program is free software; you can redistribute it and/or modify it | 6 | This program is free software; you can redistribute it and/or modify it |
| 7 | under the terms of the GNU General Public License as published by the | 7 | under the terms of the GNU General Public License as published by the |
diff --git a/lib/sha256.c b/lib/sha256.c index 55273c6a3bc..4b2cee37fb5 100644 --- a/lib/sha256.c +++ b/lib/sha256.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* sha256.c - Functions to compute SHA256 and SHA224 message digest of files or | 1 | /* sha256.c - Functions to compute SHA256 and SHA224 message digest of files or |
| 2 | memory blocks according to the NIST specification FIPS-180-2. | 2 | memory blocks according to the NIST specification FIPS-180-2. |
| 3 | 3 | ||
| 4 | Copyright (C) 2005-2006, 2008-2012 Free Software Foundation, Inc. | 4 | Copyright (C) 2005-2006, 2008-2013 Free Software Foundation, Inc. |
| 5 | 5 | ||
| 6 | This program is free software: you can redistribute it and/or modify | 6 | This program is free software: you can redistribute it and/or modify |
| 7 | it under the terms of the GNU General Public License as published by | 7 | it under the terms of the GNU General Public License as published by |
diff --git a/lib/sha512.c b/lib/sha512.c index dfb67a305d8..79f11257474 100644 --- a/lib/sha512.c +++ b/lib/sha512.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* sha512.c - Functions to compute SHA512 and SHA384 message digest of files or | 1 | /* sha512.c - Functions to compute SHA512 and SHA384 message digest of files or |
| 2 | memory blocks according to the NIST specification FIPS-180-2. | 2 | memory blocks according to the NIST specification FIPS-180-2. |
| 3 | 3 | ||
| 4 | Copyright (C) 2005-2006, 2008-2012 Free Software Foundation, Inc. | 4 | Copyright (C) 2005-2006, 2008-2013 Free Software Foundation, Inc. |
| 5 | 5 | ||
| 6 | This program is free software: you can redistribute it and/or modify | 6 | This program is free software: you can redistribute it and/or modify |
| 7 | it under the terms of the GNU General Public License as published by | 7 | it under the terms of the GNU General Public License as published by |
diff --git a/lib/sig2str.c b/lib/sig2str.c index 2f5b21cc36f..8b36e2facf0 100644 --- a/lib/sig2str.c +++ b/lib/sig2str.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* sig2str.c -- convert between signal names and numbers | 1 | /* sig2str.c -- convert between signal names and numbers |
| 2 | 2 | ||
| 3 | Copyright (C) 2002, 2004, 2006, 2009-2012 Free Software Foundation, Inc. | 3 | Copyright (C) 2002, 2004, 2006, 2009-2013 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | This program is free software: you can redistribute it and/or modify | 5 | This program is free software: you can redistribute it and/or modify |
| 6 | it under the terms of the GNU General Public License as published by | 6 | it under the terms of the GNU General Public License as published by |
diff --git a/lib/sig2str.h b/lib/sig2str.h index 75eff7d7c1a..d16be98c076 100644 --- a/lib/sig2str.h +++ b/lib/sig2str.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* sig2str.h -- convert between signal names and numbers | 1 | /* sig2str.h -- convert between signal names and numbers |
| 2 | 2 | ||
| 3 | Copyright (C) 2002, 2005, 2009-2012 Free Software Foundation, Inc. | 3 | Copyright (C) 2002, 2005, 2009-2013 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | This program is free software: you can redistribute it and/or modify | 5 | This program is free software: you can redistribute it and/or modify |
| 6 | it under the terms of the GNU General Public License as published by | 6 | it under the terms of the GNU General Public License as published by |
diff --git a/lib/stat.c b/lib/stat.c index c0bcb88320f..f888130d263 100644 --- a/lib/stat.c +++ b/lib/stat.c | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* Work around platform bugs in stat. | 1 | /* Work around platform bugs in stat. |
| 2 | Copyright (C) 2009-2012 Free Software Foundation, Inc. | 2 | Copyright (C) 2009-2013 Free Software Foundation, Inc. |
| 3 | 3 | ||
| 4 | This program is free software: you can redistribute it and/or modify | 4 | This program is free software: you can redistribute it and/or modify |
| 5 | it under the terms of the GNU General Public License as published by | 5 | it under the terms of the GNU General Public License as published by |
diff --git a/lib/stdio.in.h b/lib/stdio.in.h index f3b52d28f6b..d9a67dc4d41 100644 --- a/lib/stdio.in.h +++ b/lib/stdio.in.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* A GNU-like <stdio.h>. | 1 | /* A GNU-like <stdio.h>. |
| 2 | 2 | ||
| 3 | Copyright (C) 2004, 2007-2012 Free Software Foundation, Inc. | 3 | Copyright (C) 2004, 2007-2013 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | This program is free software; you can redistribute it and/or modify | 5 | This program is free software; you can redistribute it and/or modify |
| 6 | it under the terms of the GNU General Public License as published by | 6 | it under the terms of the GNU General Public License as published by |
diff --git a/lib/sys_stat.in.h b/lib/sys_stat.in.h index 936c0fb8c48..acc36947e38 100644 --- a/lib/sys_stat.in.h +++ b/lib/sys_stat.in.h | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* Provide a more complete sys/stat header file. | 1 | /* Provide a more complete sys/stat header file. |
| 2 | Copyright (C) 2005-2012 Free Software Foundation, Inc. | 2 | Copyright (C) 2005-2013 Free Software Foundation, Inc. |
| 3 | 3 | ||
| 4 | This program is free software; you can redistribute it and/or modify | 4 | This program is free software; you can redistribute it and/or modify |
| 5 | it under the terms of the GNU General Public License as published by | 5 | it under the terms of the GNU General Public License as published by |
diff --git a/lib/unistd.in.h b/lib/unistd.in.h index 6171f77ac71..5127eecd603 100644 --- a/lib/unistd.in.h +++ b/lib/unistd.in.h | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* Substitute for and wrapper around <unistd.h>. | 1 | /* Substitute for and wrapper around <unistd.h>. |
| 2 | Copyright (C) 2003-2012 Free Software Foundation, Inc. | 2 | Copyright (C) 2003-2013 Free Software Foundation, Inc. |
| 3 | 3 | ||
| 4 | This program is free software; you can redistribute it and/or modify | 4 | This program is free software; you can redistribute it and/or modify |
| 5 | it under the terms of the GNU General Public License as published by | 5 | it under the terms of the GNU General Public License as published by |
diff --git a/lib/unsetenv.c b/lib/unsetenv.c index ddbe9a4d293..eea21129031 100644 --- a/lib/unsetenv.c +++ b/lib/unsetenv.c | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* Copyright (C) 1992, 1995-2002, 2005-2012 Free Software Foundation, Inc. | 1 | /* Copyright (C) 1992, 1995-2002, 2005-2013 Free Software Foundation, Inc. |
| 2 | This file is part of the GNU C Library. | 2 | This file is part of the GNU C Library. |
| 3 | 3 | ||
| 4 | This program is free software: you can redistribute it and/or modify | 4 | This program is free software: you can redistribute it and/or modify |
diff --git a/lib/xalloc-oversized.h b/lib/xalloc-oversized.h index ad777d8dd79..a971c78ad35 100644 --- a/lib/xalloc-oversized.h +++ b/lib/xalloc-oversized.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* xalloc-oversized.h -- memory allocation size checking | 1 | /* xalloc-oversized.h -- memory allocation size checking |
| 2 | 2 | ||
| 3 | Copyright (C) 1990-2000, 2003-2004, 2006-2012 Free Software Foundation, Inc. | 3 | Copyright (C) 1990-2000, 2003-2004, 2006-2013 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | This program is free software: you can redistribute it and/or modify | 5 | This program is free software: you can redistribute it and/or modify |
| 6 | it under the terms of the GNU General Public License as published by | 6 | it under the terms of the GNU General Public License as published by |