ce957aef04
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
21 lines
298 B
C++
Executable File
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;
|
|
}
|