1
0
Fork 0
mirror of https://github.com/klzgrad/naiveproxy.git synced 2025-03-31 12:26:18 +03:00
naiveproxy/buildtools/third_party/libunwind/trunk/test/unw_getcontext.pass.cpp
2018-02-02 05:49:39 -05: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);
}