/*1* Copyright 2012 David Chisnall. All rights reserved.2*3* Permission is hereby granted, free of charge, to any person obtaining a copy4* of this software and associated documentation files (the "Software"), to5* deal in the Software without restriction, including without limitation the6* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or7* sell copies of the Software, and to permit persons to whom the Software is8* furnished to do so, subject to the following conditions:9*10* The above copyright notice and this permission notice shall be11* included in all copies or substantial portions of the Software.12*13* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,14* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF15* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND16* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE17* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION18* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION19* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.20*/2122#ifndef UNWIND_H_INCLUDED23#define UNWIND_H_INCLUDED2425#ifdef __cplusplus26extern "C" {27#endif2829#if defined(__arm__) && !defined(__ARM_DWARF_EH__)30#include "unwind-arm.h"31#else32#include "unwind-itanium.h"33#endif3435#ifdef __cplusplus36}37#endif3839#endif404142