which included commits to RCS files with non-trunk default branches. git-svn-id: svn://10.65.10.50/trunk@7804 c028cbd2-c16b-5b4b-a496-9718f37d4682
16 lines
251 B
C++
Executable File
16 lines
251 B
C++
Executable File
#include <xvt.h>
|
|
|
|
#include "in0.h"
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
const int n = (argc > 1) ? (argv[1][1]-'0') : 0;
|
|
switch (n)
|
|
{
|
|
case 4 : is0500(argc, argv); break; // Immissione movimenti
|
|
default:
|
|
break;
|
|
}
|
|
exit(0);
|
|
return 0;
|
|
} |