blob: b012706a0bf925c4c56e00ec32f21e0f944d179c [file] [log] [blame]
Logan Chien46004182015-06-25 15:12:46 +00001#include <assert.h>
2#include <libunwind.h>
3
4int main() {
5 unw_context_t context;
6 int ret = unw_getcontext(&context);
7 assert(ret == UNW_ESUCCESS);
8}