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
/
iq2000
/
creat.c
blob
1003a2a39238ebc52819e47bd4f77e294caea716
1
#include <_ansi.h>
2
#include <sys/types.h>
3
#include <sys/stat.h>
4
#include
"trap.h"
5
6
7
int
8
creat
(
const char
*
path
,
9
int
mode
)
10
{
11
return
TRAP0
(
SYS_creat
,
path
,
mode
,
0
);
12
}