diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2011-03-07 17:28:57 +0100 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2011-03-07 17:28:57 +0100 |
commit | 19373021defb3b917ba9617c3f45b22ab8da26dd (patch) | |
tree | 3d4f9d50baa199f2e208b84a552d8ee329582bb6 | |
parent | cda3f2658389330999ad35390ed2676a7dc37325 (diff) |
locale.c, locale.h: no need for hidden duplocale
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
-rw-r--r-- | include/locale.h | 1 | ||||
-rw-r--r-- | libc/misc/locale/locale.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/include/locale.h b/include/locale.h index d04c42ff6..b79626a46 100644 --- a/include/locale.h +++ b/include/locale.h @@ -204,7 +204,6 @@ libc_hidden_proto(newlocale) /* Return a duplicate of the set of locale in DATASET. All usage counters are increased if necessary. */ extern __locale_t duplocale (__locale_t __dataset) __THROW; -libc_hidden_proto(duplocale) /* Free the data associated with a locale dataset previously returned by a call to `setlocale_r'. */ diff --git a/libc/misc/locale/locale.c b/libc/misc/locale/locale.c index 255c10d61..e49cd3ba5 100644 --- a/libc/misc/locale/locale.c +++ b/libc/misc/locale/locale.c @@ -1337,7 +1337,6 @@ __locale_t duplocale(__locale_t dataset) } return r; } -libc_hidden_def(duplocale) #endif /**********************************************************************/ |