2 * Copyright 2002-2009, Axel Dörfler, axeld@pinc-software.de.
3 * Distributed under the terms of the MIT License.
10 #include <errno_private.h>
12 #include <syscall_utils.h>
17 mkdir(const char* path
, mode_t mode
)
19 RETURN_AND_SET_ERRNO(_kern_create_dir(-1, path
, mode
& ~__gUmask
));
24 mkdirat(int fd
, const char *path
, mode_t mode
)
26 RETURN_AND_SET_ERRNO(_kern_create_dir(fd
, path
, mode
& ~__gUmask
));