Checking in Martin's changes.

This commit is contained in:
em
1985-01-17 14:10:27 +00:00
parent e75b8772ca
commit 6512a304a0
8 changed files with 39 additions and 31 deletions

View File

@@ -15,10 +15,9 @@ parseparams(argc,argv)
int argc;
char **argv;
{
int i,j,k;
int i;
char *ext;
j=k=0;
if(argc< 4)
{
fprintf(stderr,"usage %s <flags> <file>.i <file>.e <source>\n", argv[0]);
@@ -32,7 +31,7 @@ char **argv;
case 't': traceflag++; break; /* line tracing */
case 'h':/* split EM file */
hflag=0;
threshold= (long) atol(argv[i][2]);
threshold= atoi(argv[i][2]);
if( threshold==0)
threshold= THRESHOLD;
break;