libcruft-util/test/backtrace.cpp

13 lines
175 B
C++
Raw Normal View History

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