home *** CD-ROM | disk | FTP | other *** search
- /* error - 3 small routines that crop up in Software Tools */
-
- cant(name) /* can't open file message */
- char *name;
- {
- remark(name);
- error(": can't open.");
- } /* end cant */
-
- error(msg) /* display error message, then exit */
- char *msg;
- {
- remark(msg);
- exit();
- }
-
- remark(msg) /* display error message, then continue */
- char *msg;
- {
- fputs(msg, STDERR);
- }