Browse Source

unwind-{resume,forcedunwind}.c: add missing prototypes

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Peter S. Mazinger 13 years ago
parent
commit
1d6099a2b4

+ 5 - 0
libpthread/nptl/sysdeps/pthread/unwind-forcedunwind.c

@@ -109,6 +109,11 @@ _Unwind_Resume (struct _Unwind_Exception *exc)
   resume (exc);
 }
 
+_Unwind_Reason_Code
+__gcc_personality_v0 (int version, _Unwind_Action actions,
+		      _Unwind_Exception_Class exception_class,
+                      struct _Unwind_Exception *ue_header,
+                      struct _Unwind_Context *context);
 _Unwind_Reason_Code
 __gcc_personality_v0 (int version, _Unwind_Action actions,
 		      _Unwind_Exception_Class exception_class,

+ 5 - 0
libpthread/nptl/sysdeps/pthread/unwind-resume.c

@@ -63,6 +63,11 @@ _Unwind_Resume (struct _Unwind_Exception *exc)
   libgcc_s_resume (exc);
 }
 
+_Unwind_Reason_Code
+__gcc_personality_v0 (int version, _Unwind_Action actions,
+		      _Unwind_Exception_Class exception_class,
+                      struct _Unwind_Exception *ue_header,
+                      struct _Unwind_Context *context);
 _Unwind_Reason_Code
 __gcc_personality_v0 (int version, _Unwind_Action actions,
 		      _Unwind_Exception_Class exception_class,