summaryrefslogtreecommitdiff
path: root/src/unwind.h
blob: 50894911fd629129ef464e5c83ca23e807f362e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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