From: Ulrich Drepper Date: Fri, 2 Feb 2007 15:37:16 +0000 (+0000) Subject: * include/locale.h (__uselocale): Add libc_hidden_proto. X-Git-Tag: cvs/fedora-glibc-20070211T1607~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=73f50d5a6923e404a24c398f4a2cf494e0a37795;p=thirdparty%2Fglibc.git * include/locale.h (__uselocale): Add libc_hidden_proto. * locale/uselocale.c (__uselocale): Add libc_hidden_def. 2007-02-02 Jakub Jelinek --- diff --git a/ChangeLog b/ChangeLog index a8e456021c1..914874c514a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-02-02 Jakub Jelinek + + * include/locale.h (__uselocale): Add libc_hidden_proto. + * locale/uselocale.c (__uselocale): Add libc_hidden_def. + 2007-02-02 Jakub Jelinek * nscd/nscd_helper.c (open_socket): Use __gettimeofday instead of diff --git a/locale/uselocale.c b/locale/uselocale.c index 4e63dabd8e7..6a54b58a27b 100644 --- a/locale/uselocale.c +++ b/locale/uselocale.c @@ -1,5 +1,5 @@ /* uselocale -- fetch and set the current per-thread locale - Copyright (C) 2002, 2004 Free Software Foundation, Inc. + Copyright (C) 2002, 2004, 2007 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 @@ -70,4 +70,5 @@ __uselocale (locale_t newloc) return oldloc == &_nl_global_locale ? LC_GLOBAL_LOCALE : oldloc; } +libc_hidden_def (__uselocale) weak_alias (__uselocale, uselocale)