home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 1 / crawlyvol1.bin / program / compiler / nasm20b / nasm_src / err_link.c < prev    next >
C/C++ Source or Header  |  1993-01-19  |  748b  |  34 lines

  1. /* ---------------------------------------------------------------------- */
  2. /*                   Copyright (C) 1991 by Natürlich!                     */
  3. /*                      This file is copyrighted!                         */
  4. /*                Refer to the documentation for details.                 */
  5. /* ---------------------------------------------------------------------- */
  6. #include <stdio.h>
  7. #include "defines.h"
  8. #include OSBIND
  9.  
  10. void h_print()
  11. {
  12.    extern char *currfile;
  13.  
  14.    if( currfile)
  15.    {
  16.       fputs( currfile, ESTREAM);
  17.       putc(':', ESTREAM);
  18.       putc(' ', ESTREAM);
  19.    }
  20. }
  21.  
  22. void finalshit()
  23. #if LIBRARIAN
  24. {
  25.    extern int  emptyfile;
  26.    extern char outfile[];
  27.  
  28.    if( emptyfile)
  29.       Fdelete( outfile);
  30. }
  31. #else
  32. {}
  33. #endif
  34.