use jmp_buf
[unix-history] / usr / src / local / sccscmds / sccscmds.ok / util / xunlink.c
static char Sccsid[] = "@(#)xunlink.c 1.2 %G%";
/*
Interface to unlink(II) which handles all error conditions.
Returns 0 on success,
fatal() on failure.
*/
xunlink(f)
{
if (unlink(f))
return(xmsg(f,"xunlink"));
return(0);
}