mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
9 lines
153 B
C++
9 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);
|
|
}
|