Dispatch: All commands now return the exit status

This commit is contained in:
Paul Beckingham 2016-03-01 01:16:29 -05:00
parent 2fbe57fdd0
commit b0911ca240
13 changed files with 43 additions and 32 deletions

View file

@ -28,9 +28,10 @@
#include <iostream>
////////////////////////////////////////////////////////////////////////////////
void CmdExport ()
int CmdExport ()
{
std::cout << "# export\n";
return 0;
}
////////////////////////////////////////////////////////////////////////////////