1#include <libunwind.h>
2
3int backtrace(void ** buffer, int size)
4{
5 return unw_backtrace(buffer, size);
6}
7