Rivoreo Source Code Repositories
src.rivoreo.one
/
devel
/
nativetools
/
a28327db316fcb3ecfc1dcc2ca9db725fd37c7ae
/
.
/
nativelibc
/
posix-io
/
creat.c
blob: 2198ef29c533c207856f417e0aee2e0296495233 [
file
] [
log
] [
blame
] [
raw
]
#include
<fcntl.h>
#include
<unistd.h>
int
creat
(
const
char
*
pathname
,
mode_t
mode
)
{
return
open
(
pathname
,
O_CREAT
|
O_WRONLY
|
O_TRUNC
,
mode
);
}