From 32c79b23297929b862d7086746e6609ca8705758 Mon Sep 17 00:00:00 2001 From: theraven Date: Sat, 9 Mar 2013 10:07:28 +0000 Subject: [PATCH] Add _Unwind_Action to unwind-arm.h. This wasn't originally needed, but is now because it is explicitly referenced by the function that is shared between the two ObjC personality functions. Patch by Emmanuel Maillard! --- unwind-arm.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/unwind-arm.h b/unwind-arm.h index 6377461..385abab 100644 --- a/unwind-arm.h +++ b/unwind-arm.h @@ -25,6 +25,8 @@ static const _Unwind_State _US_UNWIND_FRAME_RESUME = 2; # define _US_UNWIND_FRAME_RESUME 2 #endif +typedef int _Unwind_Action; + typedef struct _Unwind_Context _Unwind_Context; typedef uint32_t _Unwind_EHT_Header;