| # | Line 7 | Line 7 | static const char RCSid[] = "$Id$"; | |
|---|---|---|
| 7 | * 1/4/89 | |
| 8 | */ | |
| 9 | ||
| 10 | – | #include "standard.h" |
| 10 | #include "platform.h" | |
| 11 | + | #include "rtprocess.h" |
| 12 | + | #include "rterror.h" |
| 13 | #include "color.h" | |
| 14 | #include "calcomp.h" | |
| 15 | #include "view.h" | |
| # | Line 69 | Line 70 | char *progname; /* global argv[0] */ | |
| 70 | int wrongformat = 0; | |
| 71 | int gotview; | |
| 72 | ||
| 72 | – | FILE *popen(); |
| 73 | ||
| 74 | extern char *emalloc(); | |
| 75 | ||
| # | Line 597 | Line 597 | l_psize(char *nm) /* compute pixel size in steradians | |
| 597 | } | |
| 598 | ||
| 599 | ||
| 600 | < | void |
| 601 | < | wputs(msg) |
| 602 | < | char *msg; |
| 600 | > | extern void |
| 601 | > | wputs(char *msg) |
| 602 | { | |
| 603 | if (!nowarn) | |
| 604 | eputs(msg); | |
| 605 | } | |
| 606 | ||
| 607 | ||
| 608 | < | void |
| 609 | < | eputs(msg) |
| 611 | < | char *msg; |
| 608 | > | extern void |
| 609 | > | eputs(char *msg) |
| 610 | { | |
| 611 | fputs(msg, stderr); | |
| 612 | } | |
| 613 | ||
| 614 | ||
| 615 | < | void |
| 616 | < | quit(code) /* exit gracefully */ |
| 619 | < | int code; |
| 615 | > | extern void |
| 616 | > | quit(int code) /* exit gracefully */ |
| 617 | { | |
| 618 | register int i; | |
| 619 | /* close input files */ | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |