mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-09 15:26:47 +00:00
7 lines
176 B
C
7 lines
176 B
C
#include "stat.h"
|
|
#include<libsystem/syscall.h>
|
|
|
|
int mkdir(const char *path, mode_t mode)
|
|
{
|
|
return syscall_invoke(SYS_MKDIR, (uint64_t)path, (uint64_t)mode, 0,0,0,0,0,0);
|
|
} |