| # | Line 26 | Line 26 | FILE *fptr[MAXFILE]; /* the file pointers */ | |
|---|---|---|
| 26 | COLOR scale[MAXFILE]; /* scaling factors */ | |
| 27 | int nfile; /* number of files */ | |
| 28 | ||
| 29 | + | static gethfunc tabputs; |
| 30 | ||
| 31 | < | int |
| 32 | < | tabputs(s) /* print line preceded by a tab */ |
| 33 | < | char *s; |
| 31 | > | |
| 32 | > | static int |
| 33 | > | tabputs( /* print line preceded by a tab */ |
| 34 | > | char *s, |
| 35 | > | void *p |
| 36 | > | ) |
| 37 | { | |
| 38 | putc('\t', stdout); | |
| 39 | return(fputs(s, stdout)); | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines |
| > | Changed lines |