campo-sirio/or/or1.cpp
angelo a45877974e This commit was generated by cvs2svn to compensate for changes in r6239,
which included commits to RCS files with non-trunk default branches.

git-svn-id: svn://10.65.10.50/trunk@6240 c028cbd2-c16b-5b4b-a496-9718f37d4682
1998-02-21 08:14:18 +00:00

23 lines
331 B
C++
Executable File

#include <xvt.h>
#include <checks.h>
#include "or1.h"
const char* const usage = "Errore - uso : %s -{0}";
int main(int argc,char** argv)
{
const int n = argc > 1 ? atoi(argv[1]+1) : -1;
switch (n)
{
case 0:
or1100(argc,argv); break; // stampe
default:
error_box(usage, argv[0]);
}
exit(0);
return 0;
}