mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
13 lines
166 B
C
13 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);
|
|
}
|