13 lines
175 B
C++
13 lines
175 B
C++
#include "../backtrace.hpp"
|
|
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
|
|
int
|
|
main (int argc, char **argv) {
|
|
cout << debug::backtrace() << endl;
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|