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

int link(char *existing, char *new)
{
  errno = ENOSYS;
  return -1;
}