
Listing 1 -- the file remove.c


/* remove function -- UNIX version */
#include "xstdio.h"

		/* UNIX system call */
int _Unlink(const char *);

int (remove)(const char *fname)
	{   /* remove a file */
	return (_Unlink(fname));
	}

