mirror of
https://github.com/fluencelabs/musl
synced 2025-05-12 07:17:32 +00:00
8 lines
129 B
C
8 lines
129 B
C
#include <sys/stat.h>
|
|
#include "syscall.h"
|
|
|
|
int mkdir(const char *path, mode_t mode)
|
|
{
|
|
return syscall(SYS_mkdir, path, mode);
|
|
}
|