musl-tcc/src/fcntl/creat.c

9 lines
154 B
C
Raw Normal View History

2022-03-20 08:48:53 +00:00
#include <fcntl.h>
int creat(const char *filename, mode_t mode)
{
return open(filename, O_CREAT|O_WRONLY|O_TRUNC, mode);
}
weak_alias(creat, creat64);