home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / compiler / small_c / cb / sources / cant.c < prev    next >
Encoding:
Text File  |  1985-07-22  |  256 b   |  10 lines

  1.  
  2. /*
  3. ** cant.c -- abort with "name: can't open" message
  4. */
  5. cant(str) char *str; {
  6.   fputs(str, stderr);
  7.   fputs(": can't open\n", stderr);
  8.   abort(7);
  9.   }
  10.