aboutsummaryrefslogtreecommitdiff
path: root/lib/sys/mkdir.h
blob: 2505c976eaf4001805b8b60f39a1e3e7e3b19907 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef MKDIR_H
#define MKDIR_H

#include "syscalls.h"

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

#endif