| 39 |
|
|
| 40 |
|
int checkthresh = 0; /* check threshold value */ |
| 41 |
|
|
| 42 |
+ |
char StandardInput[] = "<stdin>"; |
| 43 |
|
char Command[] = "<Command>"; |
| 44 |
|
char Label[] = "<Label>"; |
| 45 |
|
|
| 208 |
|
if (autolabel && thislabel == NULL) |
| 209 |
|
thislabel = argv[an]; |
| 210 |
|
if (!strcmp(argv[an], "-")) { |
| 211 |
< |
input[nfile].name = "<stdin>"; |
| 211 |
> |
input[nfile].name = StandardInput; |
| 212 |
|
input[nfile].fp = stdin; |
| 213 |
|
} else { |
| 214 |
|
if (argv[an][0] == '!') { |
| 373 |
|
quit(1); |
| 374 |
|
} |
| 375 |
|
} |
| 376 |
+ |
/* read remainders from streams */ |
| 377 |
+ |
for (i = 0; i < nfile; i++) |
| 378 |
+ |
if (input[i].name[0] == '<') |
| 379 |
+ |
while (getc(input[i].fp) != EOF) |
| 380 |
+ |
; |
| 381 |
|
return; |
| 382 |
|
memerr: |
| 383 |
|
perror(progname); |