Sign in
chromium
/
external
/
github.com
/
llvm
/
llvm-project.git
/
35756e8984087bfb1382d2d9fe6ef983ae586d07
/
.
/
libunwind
/
test
/
unw_getcontext.pass.cpp
blob: b012706a0bf925c4c56e00ec32f21e0f944d179c [
file
] [
log
] [
blame
]
#include
<assert.h>
#include
<libunwind.h>
int
main
()
{
unw_context_t
context
;
int
ret
=
unw_getcontext
(&
context
);
assert
(
ret
==
UNW_ESUCCESS
);
}