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

#include "syscalls.h"

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

#endif