7 lines
87 B
C++
7 lines
87 B
C++
#include <execinfo.h>
|
|
|
|
int main() {
|
|
void* frames[10];
|
|
backtrace(frames, 10);
|
|
}
|