Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
fcntl
creat.c
pretty
plain
permalink
blame
history
•
6 lines
•
125 B
1
#include <fcntl.h>
2
3
int creat(const char *filename, mode_t mode)
4
{
5
	return open(filename, O_CREAT|O_WRONLY|O_TRUNC, mode);
6
}