mirror of
https://github.com/fluencelabs/musl
synced 2025-06-29 06:32:16 +00:00
10 lines
158 B
C
10 lines
158 B
C
#include <fcntl.h>
|
|
#include "libc.h"
|
|
|
|
int creat(const char *filename, mode_t mode)
|
|
{
|
|
return open(filename, O_CREAT|O_WRONLY|O_TRUNC, mode);
|
|
}
|
|
|
|
LFS64(creat);
|