Sign in
mojo
/
mojo-tools
/
73e948c3cd78ca019b82d8ad10c2326e3920fffc
/
.
/
fusl
/
src
/
fcntl
/
creat.c
blob: 78af0d452e60f75d17b6d525ce84da25ad28eb69 [
file
] [
log
] [
blame
]
#include
<fcntl.h>
#include
"libc.h"
int
creat
(
const
char
*
filename
,
mode_t
mode
)
{
return
open
(
filename
,
O_CREAT
|
O_WRONLY
|
O_TRUNC
,
mode
);
}