Danny Robson
8ea827aab0
scratch should always be a noop. It's only here to simplify testing of new code.
9 lines
95 B
C++
9 lines
95 B
C++
int
|
|
main (int argc, char **argv)
|
|
{
|
|
(void)argc;
|
|
(void)argv;
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|