mirror of
https://github.com/vmangos/core
synced 2026-08-14 16:29:10 -04:00
10 lines
202 B
C++
10 lines
202 B
C++
|
|
#ifdef CPPTRACE_BACKTRACE_PATH
|
||
|
|
#include CPPTRACE_BACKTRACE_PATH
|
||
|
|
#else
|
||
|
|
#include <backtrace.h>
|
||
|
|
#endif
|
||
|
|
|
||
|
|
int main() {
|
||
|
|
backtrace_state* state = backtrace_create_state(nullptr, true, nullptr, nullptr);
|
||
|
|
}
|