libcruft-util/tools/scratch.cpp
Danny Robson 8ea827aab0 tools/scratch: remove inadvertantly committed code
scratch should always be a noop. It's only here to simplify testing of
new code.
2016-03-15 12:30:23 +11:00

9 lines
95 B
C++

int
main (int argc, char **argv)
{
(void)argc;
(void)argv;
return EXIT_SUCCESS;
}