diff options
Diffstat (limited to 'unwind.h')
-rw-r--r-- | unwind.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/unwind.h b/unwind.h new file mode 100644 index 000000000000..50894911fd62 --- /dev/null +++ b/unwind.h @@ -0,0 +1,18 @@ +#ifndef UNWIND_H_INCLUDED +#define UNWIND_H_INCLUDED + +#ifdef __cplusplus +extern "C" { +#endif + +#ifdef __arm__ +#include "unwind-arm.h" +#else +#include "unwind-itanium.h" +#endif + +#ifdef __cplusplus +} +#endif + +#endif |