summaryrefslogtreecommitdiff
path: root/libc/misc
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-11-22 14:22:37 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-11-22 14:22:37 +0000
commitc33ce133b9da9236fffd19d72d6b4d2ca63bfa2a (patch)
treeb0e122c10be5bd07acb94a4c3c21796bf6261e79 /libc/misc
parent04b163798f550730faed41fa2cbe949cb00c07a2 (diff)
fix some unneeded PLT references
Diffstat (limited to 'libc/misc')
-rw-r--r--libc/misc/internals/__uClibc_main.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/libc/misc/internals/__uClibc_main.c b/libc/misc/internals/__uClibc_main.c
index 5f31e347c..d0de0d30e 100644
--- a/libc/misc/internals/__uClibc_main.c
+++ b/libc/misc/internals/__uClibc_main.c
@@ -82,9 +82,12 @@ void internal_function _dl_aux_init (ElfW(auxv_t) *av);
/*
* Prototypes.
*/
-extern void weak_function _stdio_init(void) attribute_hidden;
extern int *weak_const_function __errno_location(void);
+libc_hidden_proto(__errno_location)
extern int *weak_const_function __h_errno_location(void);
+libc_hidden_proto(__h_errno_location)
+
+extern void weak_function _stdio_init(void) attribute_hidden;
#ifdef __UCLIBC_HAS_LOCALE__
extern void weak_function _locale_init(void) attribute_hidden;
#endif