mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-15 10:17:20 +00:00
19 lines
210 B
C
19 lines
210 B
C
|
#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
|