home *** CD-ROM | disk | FTP | other *** search
- static char rcsid[] = "@(#)$Id: bailout.c,v 2.0 07/18/90 jbc $";
- /***************************************************************************/
- /* Copyright (c) 1990 James B. Cummings, Jr. */
- /* */
- /* This program is offered in the Public Domain and is freely available */
- /* as long as this notice is kept intact with each module. */
- /***************************************************************************/
- #include "header.h"
-
- bailout(message, status) /* display error message and exit */
- int status;
- char *message;
- {
- fprintf(stderr, "autologout: %s\n", message);
- exit(status);
- }
-