xref: /haiku/src/system/libroot/posix/sys/mkdir.c (revision 0d452c8f34013b611a54c746a71c05e28796eae2)
1 /*
2  * Copyright 2002-2009, Axel Dörfler, axeld@pinc-software.de.
3  * Distributed under the terms of the MIT License.
4  */
5 
6 
7 #include <errno.h>
8 #include <sys/stat.h>
9 
10 #include <syscalls.h>
11 #include <syscall_utils.h>
12 #include <umask.h>
13 
14 
15 int
16 mkdir(const char* path, mode_t mode)
17 {
18 	RETURN_AND_SET_ERRNO(_kern_create_dir(-1, path, mode & ~__gUmask));
19 }
20 
21 
22 int
23 mkdirat(int fd, const char *path, mode_t mode)
24 {
25 	RETURN_AND_SET_ERRNO(_kern_create_dir(fd, path, mode & ~__gUmask));
26 }
27