mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-18 08:06:32 +00:00
🆕 fat32文件系统的mkdir
This commit is contained in:
7
user/libs/libc/sys/stat.c
Normal file
7
user/libs/libc/sys/stat.c
Normal file
@ -0,0 +1,7 @@
|
||||
#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);
|
||||
}
|
Reference in New Issue
Block a user