blob: 4da9468e1fd0157d3b1da2582feb60520158f792 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* mkdirat() for uClibc
*
* Copyright (C) 2009 Analog Devices Inc.
*
* Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
*/
#include <sys/syscall.h>
#include <sys/stat.h>
#ifdef __NR_mkdirat
_syscall3(int, mkdirat, int, fd, const char *, path, mode_t, mode)
#else
/* should add emulation with mkdir() and /proc/self/fd/ ... */
#endif
|