PWB1/sys/source/s4/util/xunlink.c

Compare this file to the similar file:
Show the results in this format:

static char Sccsid[] "@(#)xunlink	1.1";
/*
	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);
}