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

link.c « netware « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d816d0ac6c473e41e409026e4c6fcc4155888392 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* NetWare version of link.  This can not be implemented using an
   MS-DOS file system.  */

#include <unistd.h>
#include <errno.h>

#undef errno
extern int errno;

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