Welcome to mirror list, hosted at ThFree Co, Russian Federation.

readlink.c « rdos « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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;
}