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

int readlink(const char *__restrict path, char *__restrict buf, size_t bufsize)
{
  errno = ENOSYS;
  return -1;
}