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: cygwin_GetCommandLineW/A: don't rely on __argv[0] content
[newlib-cygwin.git]
/
libgloss
/
m32r
/
open.c
blob
6671c29fe3a9db6d68b76254f271d8f8089f90ba
1
#include <sys/types.h>
2
#include <sys/stat.h>
3
#include
"syscall.h"
4
#include
"eit.h"
5
6
int
7
_open
(
const char
*
path
,
int
flags
)
8
{
9
return
TRAP0
(
SYS_open
,
path
,
flags
,
0
);
10
}