mirror of
https://github.com/vmangos/core
synced 2026-08-14 16:29:10 -04:00
7 lines
87 B
C++
7 lines
87 B
C++
|
|
#include <execinfo.h>
|
||
|
|
|
||
|
|
int main() {
|
||
|
|
void* frames[10];
|
||
|
|
backtrace(frames, 10);
|
||
|
|
}
|