From 5b212401037d18c1843af1b13c8cfe7f2b0756dc Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 18 Feb 1997 15:12:41 +0000 Subject: [PATCH] . --- lib/fnmatch.c | 18 ++---------------- lib/memchr.c | 4 ++-- lib/strcspn.c | 4 ++-- 3 files changed, 6 insertions(+), 20 deletions(-) diff --git a/lib/fnmatch.c b/lib/fnmatch.c index 4bc7cd9f80..f772ecc970 100644 --- a/lib/fnmatch.c +++ b/lib/fnmatch.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1992, 1993 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1992, 1993, 1997 Free Software Foundation, Inc. NOTE: The canonical source of this file is maintained with the GNU C Library. Bugs can be reported to bug-glibc@prep.ai.mit.edu. @@ -33,18 +33,6 @@ #define ISUPPER(c) (ISASCII (c) && isupper (c)) - -/* Comment out all this code if we are using the GNU C Library, and are not - actually compiling the library itself. This code is part of the GNU C - Library, but also included in many other GNU distributions. Compiling - and linking in this code is a waste when using the GNU C library - (especially if it is a shared library). Rather than having every GNU - program understand `configure --with-gnu-libc' and omit the object files, - it is simpler to just do this in the source for each such file. */ - -#if defined (_LIBC) || !defined (__GNU_LIBRARY__) - - # ifndef errno extern int errno; # endif @@ -60,7 +48,7 @@ fnmatch (pattern, string, flags) register const char *p = pattern, *n = string; register char c; -/* Note that this evalutes C many times. */ +/* Note that this evaluates C many times. */ # define FOLD(c) ((flags & FNM_CASEFOLD) && ISUPPER (c) ? tolower (c) : (c)) while ((c = *p++) != '\0') @@ -208,5 +196,3 @@ fnmatch (pattern, string, flags) # undef FOLD } - -#endif /* _LIBC or not __GNU_LIBRARY__. */ diff --git a/lib/memchr.c b/lib/memchr.c index 4448248946..fd57586b9b 100644 --- a/lib/memchr.c +++ b/lib/memchr.c @@ -1,5 +1,5 @@ -/* Copyright (C) 1991, 1993 Free Software Foundation, Inc. - Based on strlen implemention by Torbjorn Granlund (tege@sics.se), +/* Copyright (C) 1991, 1993, 1997 Free Software Foundation, Inc. + Based on strlen implementation by Torbjorn Granlund (tege@sics.se), with help from Dan Sahlin (dan@sics.se) and commentary by Jim Blandy (jimb@ai.mit.edu); adaptation to memchr suggested by Dick Karpinski (dick@cca.ucsf.edu), diff --git a/lib/strcspn.c b/lib/strcspn.c index 6d0ec8523d..9a191cd172 100644 --- a/lib/strcspn.c +++ b/lib/strcspn.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1994, 1996, 1997 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -27,7 +27,7 @@ # endif #endif -/* Return the length of the maximum inital segment of S +/* Return the length of the maximum initial segment of S which contains no characters from REJECT. */ int strcspn (s, reject) -- 2.30.2