Cygwin: access: Fix X_OK behaviour for backup operators and admins
[newlib-cygwin.git] / newlib / libc / sys / netware / link.c
blobd816d0ac6c473e41e409026e4c6fcc4155888392
1 /* NetWare version of link. This can not be implemented using an
2 MS-DOS file system. */
4 #include <unistd.h>
5 #include <errno.h>
7 #undef errno
8 extern int errno;
10 int
11 link (path1, path2)
12 const char *path1;
13 const char *path2;
15 errno = ENOSYS;
16 return -1;