use jmp_buf
[unix-history] / usr / src / local / sccscmds / sccscmds.ok / util / xunlink.c
CommitLineData
7c9c5d18 1static char Sccsid[] = "@(#)xunlink.c 1.2 %G%";
3dee9605
JL
2/*
3 Interface to unlink(II) which handles all error conditions.
4 Returns 0 on success,
5 fatal() on failure.
6*/
7
8xunlink(f)
9{
10 if (unlink(f))
11 return(xmsg(f,"xunlink"));
12 return(0);
13}