1 2 3 4 5 6 7 8 9 10
#include <execinfo.h> #include <stdio.h> int main(void) { backtrace(NULL, 0); backtrace_symbols(NULL, 0); return 0; }