Danny Robson
f6056153e3
This places, at long last, the core library code into the same namespace as the extended library code.
16 lines
315 B
C++
16 lines
315 B
C++
#include "../tap.hpp"
|
|
|
|
#include "../exe.hpp"
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
int
|
|
main (int, char **argv)
|
|
{
|
|
cruft::TAP::logger tap;
|
|
|
|
auto path = cruft::image_path ();
|
|
tap.expect_eq (path, argv[0], "identify executable path");
|
|
return tap.status ();
|
|
}
|