repo.or.cz
/
syslinux-debian.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Releasing debian version 3:6.03+dfsg-10.
[syslinux-debian.git]
/
com32
/
lib
/
creat.c
blob
3b4dc61ed5ea1faf2d35e4ae2a3dc6b904c051b0
1
/*
2
* creat.c
3
*/
4
5
#include <sys/types.h>
6
#include <sys/stat.h>
7
#include <fcntl.h>
8
9
int
creat
(
const char
*
pathname
,
mode_t mode
)
10
{
11
return
open
(
pathname
,
O_CREAT
|
O_WRONLY
|
O_TRUNC
,
mode
);
12
}