Danny Robson
f6056153e3
This places, at long last, the core library code into the same namespace as the extended library code.
18 lines
294 B
C++
18 lines
294 B
C++
#include "backtrace.hpp"
|
|
#include "tap.hpp"
|
|
#include "stream.hpp"
|
|
|
|
#include <cstdlib>
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
int
|
|
main (int, char **) {
|
|
cruft::TAP::logger tap;
|
|
|
|
debug::backtrace ();
|
|
tap.noop ();
|
|
|
|
return tap.status ();
|
|
}
|