summaryrefslogtreecommitdiffstats
path: root/gnu/libexec/uucp/libunix/remove.c
blob: b695888ffaa3a80e97f7faf46656276e9c35af92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* remove.c
   Remove a file (Unix specific implementation).  */

#include "uucp.h"

#include "sysdep.h"

int
remove (z)
     const char *z;
{
  return unlink (z);
}
OpenPOWER on IntegriCloud