summaryrefslogtreecommitdiff
path: root/lib/libc/fcntl/creat.c
blob: fdcb665548c2b9fb6c10652d2f5fff7d975d7ebf (plain)
1
2
3
4
5
6
7
#include <fcntl.h>
#include <syscall.h>

int creat(const char *path, mode_t mode)
{
	return syscall(creat, path, mode);
}