From 390500b147a8063ea4be7313ec38cada26f9235a Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Wed, 28 Apr 1999 21:56:46 +0000 Subject: Update. 1999-04-28 Ulrich Drepper * manager.c (pthread_allocate_stack): Optimize initialization of new thread descriptor. --- intl/finddomain.c | 5 ----- intl/loadmsgcat.c | 4 ++-- intl/localealias.c | 12 ++++++------ 3 files changed, 8 insertions(+), 13 deletions(-) (limited to 'intl') diff --git a/intl/finddomain.c b/intl/finddomain.c index 7734fbf24f..a3083b10e2 100644 --- a/intl/finddomain.c +++ b/intl/finddomain.c @@ -47,11 +47,6 @@ void free (); # define memcpy(Dst, Src, Num) bcopy (Src, Dst, Num) # endif #endif -#if !HAVE_STRCHR && !defined _LIBC -# ifndef strchr -# define strchr index -# endif -#endif #if defined HAVE_UNISTD_H || defined _LIBC # include diff --git a/intl/loadmsgcat.c b/intl/loadmsgcat.c index 480e6bc384..76887e8b4f 100644 --- a/intl/loadmsgcat.c +++ b/intl/loadmsgcat.c @@ -1,5 +1,5 @@ /* Load needed message catalogs. - Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc. + Copyright (C) 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc. This file is part of the GNU C Library. Its master source is NOT part of the C library, however. @@ -63,7 +63,7 @@ /* We need a sign, whether a new catalog was loaded, which can be associated with all translations. This is important if the translations are cached by one of GCC's features. */ -int _nl_msg_cat_cntr = 0; +int _nl_msg_cat_cntr; /* Load the message catalogs specified by FILENAME. If it is no valid diff --git a/intl/localealias.c b/intl/localealias.c index 0c35b7a551..9f2c510428 100644 --- a/intl/localealias.c +++ b/intl/localealias.c @@ -1,5 +1,5 @@ /* Handle aliases for locale names. - Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc. + Copyright (C) 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc. This file is part of the GNU C Library. Its master source is NOT part of the C library, however. @@ -150,12 +150,12 @@ struct alias_map }; -static char *string_space = NULL; -static size_t string_space_act = 0; -static size_t string_space_max = 0; +static char *string_space; +static size_t string_space_act; +static size_t string_space_max; static struct alias_map *map; -static size_t nmap = 0; -static size_t maxmap = 0; +static size_t nmap; +static size_t maxmap; /* Prototypes for local functions. */ -- cgit 1.4.1