summaryrefslogtreecommitdiffstats
path: root/libpthread/nptl/sysdeps/pthread/unwind-resume.c
diff options
context:
space:
mode:
Diffstat (limited to 'libpthread/nptl/sysdeps/pthread/unwind-resume.c')
-rw-r--r--libpthread/nptl/sysdeps/pthread/unwind-resume.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/libpthread/nptl/sysdeps/pthread/unwind-resume.c b/libpthread/nptl/sysdeps/pthread/unwind-resume.c
index 594296723..018d2fd2f 100644
--- a/libpthread/nptl/sysdeps/pthread/unwind-resume.c
+++ b/libpthread/nptl/sysdeps/pthread/unwind-resume.c
@@ -27,13 +27,16 @@ static _Unwind_Reason_Code (*libgcc_s_personality)
(int, _Unwind_Action, _Unwind_Exception_Class, struct _Unwind_Exception *,
struct _Unwind_Context *);
+extern
+void abort(void);
+
static void
init (void)
{
void *resume = NULL;
void *personality = NULL;
void *handle;
-
+ resume = personality = NULL; /* make gcc silent */
handle = dlopen ("libgcc_s.so.1", (RTLD_LOCAL | RTLD_LAZY));
if (handle == NULL