1989-05-30 13:34:25 +00:00
|
|
|
/*
|
|
|
|
* remove.c - remove a file
|
|
|
|
*/
|
|
|
|
/* $Header$ */
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
1990-01-22 11:13:26 +00:00
|
|
|
int _unlink(const char *path);
|
1989-05-30 13:34:25 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
remove(const char *filename) {
|
1990-01-22 11:13:26 +00:00
|
|
|
return _unlink(filename);
|
1989-05-30 13:34:25 +00:00
|
|
|
}
|