1232950Stheraven/*
2232950Stheraven * Copyright 2012 David Chisnall. All rights reserved.
3232950Stheraven *
4232950Stheraven * Permission is hereby granted, free of charge, to any person obtaining a copy
5232950Stheraven * of this software and associated documentation files (the "Software"), to
6232950Stheraven * deal in the Software without restriction, including without limitation the
7232950Stheraven * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
8232950Stheraven * sell copies of the Software, and to permit persons to whom the Software is
9232950Stheraven * furnished to do so, subject to the following conditions:
10232950Stheraven *
11232950Stheraven * The above copyright notice and this permission notice shall be
12232950Stheraven * included in all copies or substantial portions of the Software.
13232950Stheraven *
14232950Stheraven * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15232950Stheraven * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16232950Stheraven * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17232950Stheraven * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18232950Stheraven * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19232950Stheraven * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20232950Stheraven * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21232950Stheraven */
22232950Stheraven
23227972Stheraven#ifndef UNWIND_H_INCLUDED
24227972Stheraven#define UNWIND_H_INCLUDED
25227972Stheraven
26227972Stheraven#ifdef __cplusplus
27227972Stheravenextern "C" {
28227972Stheraven#endif
29227972Stheraven
30227972Stheraven#ifdef __arm__
31227972Stheraven#include "unwind-arm.h"
32227972Stheraven#else
33227972Stheraven#include "unwind-itanium.h"
34227972Stheraven#endif
35227972Stheraven
36227972Stheraven#ifdef __cplusplus
37227972Stheraven}
38227972Stheraven#endif
39227972Stheraven
40227972Stheraven#endif
41