9 lines
153 B
C++
Raw Normal View History

2018-01-28 13:32:06 -05:00
#include <assert.h>
#include <libunwind.h>
int main() {
unw_context_t context;
int ret = unw_getcontext(&context);
assert(ret == UNW_ESUCCESS);
}