libcruft-util/test/backtrace.cpp

13 lines
166 B
C++
Raw Normal View History

2011-05-23 17:18:52 +10:00
#include "../backtrace.hpp"
#include <iostream>
using namespace std;
int
2011-05-25 23:03:00 +10:00
main (int, char **) {
2011-05-23 17:18:52 +10:00
cout << debug::backtrace() << endl;
return EXIT_SUCCESS;
}