home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l200 / 6.ddi / LIB / KILL.C < prev    next >
Encoding:
C/C++ Source or Header  |  1986-08-21  |  286 b   |  17 lines

  1. /*    KILL(file) -- delete file from disk
  2.  
  3.         Copyright (c) 1983, 1984  by  JMI Software Consultants, Inc.
  4. */
  5.  
  6. #include "acom.h"
  7.  
  8. VOID KILL(file)
  9.     BTEXT *file;
  10.     {
  11.     IMPORT INT strlpfx;
  12.     COUNT status;
  13.  
  14.     if ((status = unlink(file + strlpfx)) < 0)
  15.         xerror(status, "KILL");
  16.     }
  17.