allwinner_a64/android/external/libunwind_llvm/test/unw_getcontext.pass.cpp
2018-08-08 16:14:42 +08:00

8 lines
153 B
C++

#include <assert.h>
#include <libunwind.h>
int main() {
unw_context_t context;
int ret = unw_getcontext(&context);
assert(ret == UNW_ESUCCESS);
}