diff options
author | Jim Meyering <jim@meyering.net> | 1994-10-20 16:16:39 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1994-10-20 16:16:39 +0000 |
commit | 154bd660bbc3bfdde9f4bb43d1942375e8bb324f (patch) | |
tree | 42b1dd0158a22cd99ff532c65282f149be108c3e /lib | |
parent | adeff820d3380fd5d80599a3962cd13a9269d1d1 (diff) | |
download | coreutils-154bd660bbc3bfdde9f4bb43d1942375e8bb324f.tar.xz |
merge with 3.9p
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Makefile.in | 2 | ||||
-rw-r--r-- | lib/dirname.c | 10 | ||||
-rw-r--r-- | lib/fnmatch.c | 24 | ||||
-rw-r--r-- | lib/rename.c | 2 | ||||
-rw-r--r-- | lib/savedir.c | 2 |
5 files changed, 21 insertions, 19 deletions
diff --git a/lib/Makefile.in b/lib/Makefile.in index 7cfb5b676..7740eaf7d 100644 --- a/lib/Makefile.in +++ b/lib/Makefile.in @@ -23,7 +23,7 @@ VPATH = @srcdir@ CC = @CC@ AR = ar RANLIB = @RANLIB@ -DEFS = -Dlint @DEFS@ +DEFS = @DEFS@ CFLAGS = @CFLAGS@ YACC = @YACC@ diff --git a/lib/dirname.c b/lib/dirname.c index 929061480..15d25967a 100644 --- a/lib/dirname.c +++ b/lib/dirname.c @@ -26,11 +26,11 @@ char *malloc (); #endif #if defined(STDC_HEADERS) || defined(HAVE_STRING_H) #include <string.h> -#ifndef rindex -#define rindex strrchr -#endif #else #include <strings.h> +#ifndef strrchr +#define strrchr rindex +#endif #endif /* Return the leading directories part of PATH, @@ -46,7 +46,7 @@ dirname (path) char *slash; int length; /* Length of result, not including NUL. */ - slash = rindex (path, '/'); + slash = strrchr (path, '/'); if (slash == 0) { /* File is in the current directory. */ @@ -61,7 +61,7 @@ dirname (path) length = slash - path + 1; } - newpath = malloc (length + 1); + newpath = (char *) malloc (length + 1); if (newpath == 0) return 0; strncpy (newpath, path, length); diff --git a/lib/fnmatch.c b/lib/fnmatch.c index 2fb65b521..813e28168 100644 --- a/lib/fnmatch.c +++ b/lib/fnmatch.c @@ -1,19 +1,21 @@ /* Copyright (C) 1991, 1992, 1993 Free Software Foundation, Inc. -This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public License as -published by the Free Software Foundation; either version 2 of the -License, or (at your option) any later version. +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. -This library is distributed in the hope that it will be useful, +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 the +Free Software Foundation; either version 2, or (at your option) any +later version. + +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. -You should have received a copy of the GNU Library General Public -License along with this library; see the file COPYING.LIB. If -not, write to the Free Software Foundation, Inc., 675 Mass Ave, -Cambridge, MA 02139, USA. */ +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifdef HAVE_CONFIG_H #include <config.h> diff --git a/lib/rename.c b/lib/rename.c index 63193973b..3788e900e 100644 --- a/lib/rename.c +++ b/lib/rename.c @@ -22,7 +22,7 @@ #include <sys/types.h> #include <sys/stat.h> #include <errno.h> -#ifndef STDC_HEADERS +#ifndef errno extern int errno; #endif diff --git a/lib/savedir.c b/lib/savedir.c index 9a5736451..1992cf55b 100644 --- a/lib/savedir.c +++ b/lib/savedir.c @@ -57,10 +57,10 @@ #else char *malloc (); char *realloc (); +#endif #ifndef NULL #define NULL 0 #endif -#endif char *stpcpy (); |