summaryrefslogtreecommitdiffstats
path: root/newlib/libc/sys/rdos/readlink.c
blob: ad4c69d1c271e6e97b32406e596db78e80350b74 (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 *path, char *buf, size_t bufsize)
{
  errno = ENOSYS;
  return -1;
}