aboutsummaryrefslogtreecommitdiff
path: root/lib/sys/creat.h
blob: b8c4650ba32a5990c2d2e3a2e325fb6f52977e8e (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef CREAT_H
#define CREAT_H

#include "syscalls.h"

static int creat(const char *pathname, unsigned int mode)
{
	return syscall(CREAT, pathname, mode);
}

#endif