1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-15 10:17:20 +00:00
freebsd/unwind.h

19 lines
210 B
C
Raw Normal View History

#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