Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
wasi
libc-top-half
musl
src
fcntl
creat.c
pretty
plain
permalink
blame
history
•
8 lines
•
154 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
}
7
8
weak_alias(creat, creat64);