| # | Line 61 | Line 61 | int wrongformat = 0; | |
|---|---|---|
| 61 | FILE *lblopen(); | |
| 62 | void quit(); | |
| 63 | ||
| 64 | + | static gethfunc tabputs; |
| 65 | ||
| 66 | < | tabputs(s) /* print line preceded by a tab */ |
| 67 | < | char *s; |
| 66 | > | |
| 67 | > | static int |
| 68 | > | tabputs( /* print line preceded by a tab */ |
| 69 | > | char *s, |
| 70 | > | void *p |
| 71 | > | ) |
| 72 | { | |
| 73 | char fmt[32]; | |
| 74 | ||
| # | Line 393 | Line 398 | lblopen(s, xp, yp) /* open pipe to label generator */ | |
| 398 | char *s; | |
| 399 | int *xp, *yp; | |
| 400 | { | |
| 401 | < | char com[128]; |
| 401 | > | char com[PATH_MAX]; |
| 402 | FILE *fp; | |
| 403 | ||
| 404 | sprintf(com, "psign -s -.15 -a 2 -x %d -y %d '%.90s'", *xp, *yp, s); | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |