| # | Line 372 | Line 372 | scan() /* scan next character, return literal next | |
|---|---|---|
| 372 | ||
| 373 | ||
| 374 | char * | |
| 375 | < | ltoa(l) /* convert long to ascii */ |
| 375 | > | long2ascii(l) /* convert long to ascii */ |
| 376 | long l; | |
| 377 | { | |
| 378 | static char buf[16]; | |
| # | Line 406 | Line 406 | char *err; | |
| 406 | if (infile != NULL) eputs(infile); | |
| 407 | if (lineno != 0) { | |
| 408 | eputs(infile != NULL ? ", line " : "line "); | |
| 409 | < | eputs(ltoa((long)lineno)); |
| 409 | > | eputs(long2ascii((long)lineno)); |
| 410 | } | |
| 411 | eputs(":\n"); | |
| 412 | } | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |