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