home *** CD-ROM | disk | FTP | other *** search
- /* KILL(file) -- delete file from disk
-
- Copyright (c) 1983, 1984 by JMI Software Consultants, Inc.
- */
-
- #include "acom.h"
-
- VOID KILL(file)
- BTEXT *file;
- {
- IMPORT INT strlpfx;
- COUNT status;
-
- if ((status = unlink(file + strlpfx)) < 0)
- xerror(status, "KILL");
- }