diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2010-02-05 19:15:46 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2010-02-05 19:15:46 +0100 |
commit | 5e0feee937a724654d1ae199ccee7e7b9f98e7e2 (patch) | |
tree | 978b4ae123ccf0848d2d5f108efb0e3975ae475e /ldso | |
parent | ed901783d9a1908d9a43e8f90c3a89700b5a4300 (diff) |
ldso: add missing prototypes
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'ldso')
-rw-r--r-- | ldso/include/ldso.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ldso/include/ldso.h b/ldso/include/ldso.h index 99dcf839c..e5669057c 100644 --- a/ldso/include/ldso.h +++ b/ldso/include/ldso.h @@ -72,6 +72,11 @@ extern char *_dl_ldsopath; /* Where the shared lib loader was found extern const char *_dl_progname; /* The name of the executable being run */ extern size_t _dl_pagesize; /* Store the page size for use later */ +#ifdef USE_TLS +extern void _dl_add_to_slotinfo (struct link_map *l); +extern void ** __attribute__ ((const)) _dl_initial_error_catch_tsd (void); +#endif + #ifdef __SUPPORT_LD_DEBUG__ extern char *_dl_debug; extern char *_dl_debug_symbols; |