* include/locale.h (__uselocale): Add libc_hidden_proto.
authorUlrich Drepper <drepper@redhat.com>
Fri, 2 Feb 2007 15:37:16 +0000 (15:37 +0000)
committerUlrich Drepper <drepper@redhat.com>
Fri, 2 Feb 2007 15:37:16 +0000 (15:37 +0000)
* locale/uselocale.c (__uselocale): Add libc_hidden_def.

2007-02-02  Jakub Jelinek  <jakub@redhat.com>

ChangeLog
locale/uselocale.c

index a8e4560..914874c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2007-02-02  Jakub Jelinek  <jakub@redhat.com>
 
+       * include/locale.h (__uselocale): Add libc_hidden_proto.
+       * locale/uselocale.c (__uselocale): Add libc_hidden_def.
+
+2007-02-02  Jakub Jelinek  <jakub@redhat.com>
+
        * nscd/nscd_helper.c (open_socket): Use __gettimeofday instead of
        gettimeofday.
 
index 4e63dab..6a54b58 100644 (file)
@@ -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)