Initial revision
This commit is contained in:
13
lib/stdio/remove.c
Executable file
13
lib/stdio/remove.c
Executable file
@@ -0,0 +1,13 @@
|
||||
/*
|
||||
* remove.c - remove a file
|
||||
*/
|
||||
/* $Header$ */
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
int _unlink(const char *path);
|
||||
|
||||
int
|
||||
remove(const char *filename) {
|
||||
return _unlink(filename);
|
||||
}
|
||||
Reference in New Issue
Block a user