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
/
h8300hms
/
syscalls.c
blob
b9ec17a529acbe5561276a9cf7a718bbb986466b
1
/* Operating system stubs, set up for the MRI simulator */
2
3
#include <_ansi.h>
4
#include <errno.h>
5
6
int
_isatty
(
file
)
7
int
file
;
8
{
9
return
1
;
10
}
11
12
int
13
_unlink
(
path
)
14
const char
*
path
;
15
{
16
errno
=
EIO
;
17
return
-
1
;
18
}