mirror of
https://github.com/SEPPDROID/Digital-Research-Source-Code.git
synced 2025-10-23 00:14:25 +00:00
9 lines
143 B
C
9 lines
143 B
C
/*
|
|
* Unlink.c -- Whitesmith's version of UNIX unlink function
|
|
*/
|
|
unlink(name)
|
|
char *name; /* -> file name */
|
|
{
|
|
return(remove(name));
|
|
}
|