home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / mbug / mbug103.arc / MESS.C < prev    next >
Text File  |  1979-12-31  |  384b  |  22 lines

  1.  
  2. /*
  3. ** mess.c -- message functions
  4. */
  5. #include <stdio.h>
  6. #define NOCCARGC
  7. puts2(str1, str2) char *str1, *str2; {
  8.   fputs(str1, stdout);
  9.   puts(str2);
  10.   }
  11. cant(str) char *str; {
  12.   error2(str, " - Can't Open");
  13.   }
  14. error2(str1, str2) char *str1, *str2; {
  15.   fputs(str1, stdout);
  16.   error(str2);
  17.   }
  18. error(str) char *str; {
  19.   puts(str);
  20.   abort(7);
  21.   }
  22.