campo-sirio/sv/sv0.cpp
guy ce957aef04 This commit was generated by cvs2svn to compensate for changes in r5035,
which included commits to RCS files with non-trunk default branches.

git-svn-id: svn://10.65.10.50/trunk@5036 c028cbd2-c16b-5b4b-a496-9718f37d4682
1997-08-05 09:24:21 +00:00

21 lines
298 B
C++
Executable File

#include <xvt.h>
#include <checks.h>
#include "sv0.h"
int main(int argc, char** argv)
{
int n = argc > 1 ? atoi(argv[1]+1) : 0;
switch(n)
{
case 3:
st0400(argc, argv);
break;
default:
error_box("Invalid argument %s", argv[1]);
break;
}
exit(0);
return 0;
}