summaryrefslogtreecommitdiffstats
path: root/newlib/libc/sys/rdos/unlink.c
blob: 793631b6c40883c7725a991db61c659275af920c (plain)
1
2
3
4
5
6
7
8
9
10
#include "config.h"
#include <_ansi.h>
#include <_syslist.h>
#include <errno.h>

int unlink(char *name)
{
  errno = ENOSYS;
  return -1;
}