diff options
author | Andreas Jaeger <aj@suse.de> | 2000-12-31 19:13:04 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2000-12-31 19:13:04 +0000 |
commit | 66539a737d6e1fe3aa6ce27f9a2548f9e7f47e3f (patch) | |
tree | 5956e4edd32bea5f2cc2b721b7137765fab17d89 /elf/soinit.c | |
parent | 72f70279f4fa34d123ec234c7295059ce15fb8ac (diff) | |
download | glibc-66539a737d6e1fe3aa6ce27f9a2548f9e7f47e3f.tar glibc-66539a737d6e1fe3aa6ce27f9a2548f9e7f47e3f.tar.gz glibc-66539a737d6e1fe3aa6ce27f9a2548f9e7f47e3f.tar.bz2 glibc-66539a737d6e1fe3aa6ce27f9a2548f9e7f47e3f.zip |
Update.
* include/libc-internal.h: Add prototype for __libc_freeres.
* malloc/mtrace.c: Likewise.
* malloc/set-freeres.c: Likewise.
Diffstat (limited to 'elf/soinit.c')
-rw-r--r-- | elf/soinit.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/elf/soinit.c b/elf/soinit.c index 4e2a149d86..42e6cf1691 100644 --- a/elf/soinit.c +++ b/elf/soinit.c @@ -3,9 +3,11 @@ the `.ctors' and `.dtors' sections so the lists are terminated, and calling those lists of functions. */ -# ifdef HAVE_DWARF2_UNWIND_INFO_STATIC +#include <libc-internal.h> + +#ifdef HAVE_DWARF2_UNWIND_INFO_STATIC # include <gccframe.h> -# endif +#endif static void (*const __CTOR_LIST__[1]) (void) __attribute__ ((section (".ctors"))) |