llvm-project/libunwind/test/unw_getcontext.pass.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
176 B
C++
Raw Normal View History

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