2002-08-13 Jakub Jelinek <jakub@redhat.com>

* locale/loadarchive.c (archfname): Add missing slash.

        * sysdeps/generic/strtold.c (__strtold_internal): Add libc_hidden_def.
        * wcsmbs/wcstold.c (__wcstold_internal): Add libc_hidden_def.
This commit is contained in:
Roland McGrath 2002-08-13 17:17:02 +00:00
parent faea9de6e0
commit 7c6af01254
4 changed files with 11 additions and 2 deletions

View File

@ -1,3 +1,10 @@
2002-08-13 Jakub Jelinek <jakub@redhat.com>
* locale/loadarchive.c (archfname): Add missing slash.
* sysdeps/generic/strtold.c (__strtold_internal): Add libc_hidden_def.
* wcsmbs/wcstold.c (__wcstold_internal): Add libc_hidden_def.
2002-08-12 Roland McGrath <roland@redhat.com>
* include/sys/wait.h (__waitpid): Add libc_hidden_proto.

View File

@ -39,7 +39,7 @@
/* Name of the locale archive file. */
static const char archfname[] = LOCALEDIR "locale-archive";
static const char archfname[] = LOCALEDIR "/locale-archive";
/* Record of contiguous pages already mapped from the locale archive. */

View File

@ -1,4 +1,4 @@
/* Copyright (C) 1999 Free Software Foundation, Inc.
/* Copyright (C) 1999, 2002 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
@ -25,6 +25,7 @@ __strtold_internal (const char *nptr, char **endptr, int group)
{
return __strtod_internal (nptr, endptr, group);
}
libc_hidden_def (__strtold_internal)
long double
strtold (const char *nptr, char **endptr)

View File

@ -52,6 +52,7 @@ __wcstold_internal (const wchar_t *nptr, wchar_t **endptr, int group)
{
return __wcstod_internal (nptr, endptr, group);
}
libc_hidden_def (__wcstold_internal)
long double
wcstold (const wchar_t *nptr, wchar_t **endptr)