diff options
author | RincewindsHat <12514511+RincewindsHat@users.noreply.github.com> | 2022-08-23 19:42:51 +0200 |
---|---|---|
committer | RincewindsHat <12514511+RincewindsHat@users.noreply.github.com> | 2022-09-14 11:08:55 +0200 |
commit | 868beb15ae02c352005a2df8857f4ebb9bd758fd (patch) | |
tree | 0dc6e6a91c4ef0f131ca82a777e6ac2ad193c399 /gl/memchr.c | |
parent | b89aee56964f7d933f2da5f371e32b4d7db9410b (diff) | |
download | monitoring-plugins-868beb1.tar.gz |
Sync with the latest Gnulib code (d27c820595)
Diffstat (limited to 'gl/memchr.c')
-rw-r--r-- | gl/memchr.c | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/gl/memchr.c b/gl/memchr.c index 3db38a94..0ca7b30a 100644 --- a/gl/memchr.c +++ b/gl/memchr.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* Copyright (C) 1991, 1993, 1996-1997, 1999-2000, 2003-2004, 2006, 2008-2013 | 1 | /* Copyright (C) 1991, 1993, 1996-1997, 1999-2000, 2003-2004, 2006, 2008-2022 |
2 | Free Software Foundation, Inc. | 2 | Free Software Foundation, Inc. |
3 | 3 | ||
4 | Based on strlen implementation by Torbjorn Granlund (tege@sics.se), | 4 | Based on strlen implementation by Torbjorn Granlund (tege@sics.se), |
@@ -7,21 +7,21 @@ | |||
7 | adaptation to memchr suggested by Dick Karpinski (dick@cca.ucsf.edu), | 7 | adaptation to memchr suggested by Dick Karpinski (dick@cca.ucsf.edu), |
8 | and implemented by Roland McGrath (roland@ai.mit.edu). | 8 | and implemented by Roland McGrath (roland@ai.mit.edu). |
9 | 9 | ||
10 | NOTE: The canonical source of this file is maintained with the GNU C Library. | 10 | NOTE: The canonical source of this file is maintained with the GNU C Library. |
11 | Bugs can be reported to bug-glibc@prep.ai.mit.edu. | 11 | Bugs can be reported to bug-glibc@prep.ai.mit.edu. |
12 | 12 | ||
13 | This program is free software: you can redistribute it and/or modify it | 13 | This file is free software: you can redistribute it and/or modify |
14 | under the terms of the GNU General Public License as published by the | 14 | it under the terms of the GNU Lesser General Public License as |
15 | Free Software Foundation; either version 3 of the License, or any | 15 | published by the Free Software Foundation; either version 2.1 of the |
16 | later version. | 16 | License, or (at your option) any later version. |
17 | 17 | ||
18 | This program is distributed in the hope that it will be useful, | 18 | This file is distributed in the hope that it will be useful, |
19 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 19 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
20 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 20 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
21 | GNU General Public License for more details. | 21 | GNU Lesser General Public License for more details. |
22 | 22 | ||
23 | You should have received a copy of the GNU General Public License | 23 | You should have received a copy of the GNU Lesser General Public License |
24 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ | 24 | along with this program. If not, see <https://www.gnu.org/licenses/>. */ |
25 | 25 | ||
26 | #ifndef _LIBC | 26 | #ifndef _LIBC |
27 | # include <config.h> | 27 | # include <config.h> |