From 5b155773ee9c869d926e35039c244bbdfc249384 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Tue, 28 Apr 1998 19:41:51 +0000 Subject: Update. * string/basename.c [!_LIBC]: Define function as gnu_basename. * posix/getopt.c [!__GNU_LIBRARY__]: Include string.h or strings.h. --- ChangeLog | 5 +++++ posix/getopt.c | 9 ++++++--- string/basename.c | 9 ++++++++- 3 files changed, 19 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 5d0580006c..1c5b262b78 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 1998-04-28 Ulrich Drepper + * string/basename.c [!_LIBC]: Define function as gnu_basename. + + * posix/getopt.c [!__GNU_LIBRARY__]: Include string.h or + strings.h. + * stdlib/grouping.h: Accept ungrouped numbers even if locale defines grouping. diff --git a/posix/getopt.c b/posix/getopt.c index 4cbf3614cc..4d837c041a 100644 --- a/posix/getopt.c +++ b/posix/getopt.c @@ -198,15 +198,18 @@ static char *posixly_correct; # define my_index strchr #else +# if HAVE_STRING_H +# include +# else +# include +# endif + /* Avoid depending on library functions or files whose names are inconsistent. */ #ifndef getenv extern char *getenv (); #endif -#ifndef strncmp -extern int strncmp (); -#endif static char * my_index (str, chr) diff --git a/string/basename.c b/string/basename.c index f24e0ac1b4..ce1b4de3da 100644 --- a/string/basename.c +++ b/string/basename.c @@ -1,5 +1,5 @@ /* Return the name-within-directory of a file name. - Copyright (C) 1996, 1997 Free Software Foundation, Inc. + Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -23,6 +23,13 @@ #include +#ifndef _LIBC +/* We cannot generally use the name `basename' since XPG defines an unusable + variant of the function but we cannot use it. */ +# define basename gnu_basename +#endif + + char * basename (filename) const char *filename; -- cgit 1.4.1