repo.or.cz
/
newlib-cygwin.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Cygwin: access: Fix X_OK behaviour for backup operators and admins
[newlib-cygwin.git]
/
newlib
/
libc
/
sys
/
netware
/
link.c
blob
d816d0ac6c473e41e409026e4c6fcc4155888392
1
/* NetWare version of link. This can not be implemented using an
2
MS-DOS file system. */
3
4
#include <unistd.h>
5
#include <errno.h>
6
7
#undef errno
8
extern
int
errno
;
9
10
int
11
link
(
path1
,
path2
)
12
const char
*
path1
;
13
const char
*
path2
;
14
{
15
errno
=
ENOSYS
;
16
return
-
1
;
17
}