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
/
sh
/
creat.c
blob
5cce6d06534f66a2c06f8d517010199f23903f84
1
extern
int
2
_creat
(
const char
*
path
,
int
mode
);
3
4
int
5
creat
(
const char
*
path
,
int
mode
)
6
{
7
return
_creat
(
path
,
mode
);
8
}