1234567891011121314151617181920212223 |
- /* vi: set sw=4 ts=4: */
- /*
- * mkdir() for uClibc
- *
- * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
- *
- * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
- */
- #include "syscalls.h"
- #include <sys/stat.h>
- libc_hidden_proto(mkdir)
- #define __NR___syscall_mkdir __NR_mkdir
- static inline _syscall2(int, __syscall_mkdir, const char *, pathname,
- __kernel_mode_t, mode);
- int mkdir(const char *pathname, mode_t mode)
- {
- return (__syscall_mkdir(pathname, mode));
- }
- libc_hidden_def(mkdir)
|