summaryrefslogtreecommitdiffstats
path: root/gl/memchr.c
diff options
context:
space:
mode:
Diffstat (limited to 'gl/memchr.c')
-rw-r--r--gl/memchr.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/gl/memchr.c b/gl/memchr.c
index 3db38a9..56fd59d 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-2021
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
10NOTE: 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.
11Bugs can be reported to bug-glibc@prep.ai.mit.edu. 11 Bugs can be reported to bug-glibc@prep.ai.mit.edu.
12 12
13This 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
14under 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
15Free Software Foundation; either version 3 of the License, or any 15 published by the Free Software Foundation; either version 2.1 of the
16later version. 16 License, or (at your option) any later version.
17 17
18This program is distributed in the hope that it will be useful, 18 This file is distributed in the hope that it will be useful,
19but WITHOUT ANY WARRANTY; without even the implied warranty of 19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21GNU General Public License for more details. 21 GNU Lesser General Public License for more details.
22 22
23You 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
24along 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>