14 lines
165 B
C
14 lines
165 B
C
/*
|
|
* remove.c - remove a file
|
|
*/
|
|
/* $Header$ */
|
|
|
|
#include <stdio.h>
|
|
|
|
int unlink(const char *path);
|
|
|
|
int
|
|
remove(const char *filename) {
|
|
return unlink(filename);
|
|
}
|