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

symlink.c « rdos « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4d5fa1e6f6ab08bbc8bfd8072823524ead53633b (plain)
1
2
3
4
5
6
7
8
9
10
#include "config.h"
#include <_ansi.h>
#include <_syslist.h>
#include <errno.h>

int symlink(const char *path1, const char *path2)
{
  errno = ENOSYS;
  return -1;
}