#if !defined(lint) && defined(SCCSIDS) static char sccsid[] = "@(#)remove.c 1.1 92/07/30 SMI"; #endif /*LINTLIBRARY*/ #include #undef remove int remove(fname) register char *fname; { return (unlink(fname)); }