mirror of
https://github.com/opnsense/src.git
synced 2026-04-02 07:55:21 -04:00
14 lines
166 B
C
14 lines
166 B
C
|
|
/* remove.c
|
||
|
|
Remove a file (Unix specific implementation). */
|
||
|
|
|
||
|
|
#include "uucp.h"
|
||
|
|
|
||
|
|
#include "sysdep.h"
|
||
|
|
|
||
|
|
int
|
||
|
|
remove (z)
|
||
|
|
const char *z;
|
||
|
|
{
|
||
|
|
return unlink (z);
|
||
|
|
}
|