diff options
author | Anton Kling <anton@kling.gg> | 2023-10-23 22:13:19 +0200 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2023-10-23 23:36:34 +0200 |
commit | e05d72ba8f09866b768f3da7776b807072ed7b9b (patch) | |
tree | dc9a1ec45802df7c74ddc9fdd78436b23122e44a /userland/libc/include/syscall.h | |
parent | 6458875860cde6421a06031702788d9969e0a5db (diff) |
VFS/libc: Create a syscall for mkdir and add the function to libc
Diffstat (limited to 'userland/libc/include/syscall.h')
-rw-r--r-- | userland/libc/include/syscall.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/userland/libc/include/syscall.h b/userland/libc/include/syscall.h index caa7779..b3863d2 100644 --- a/userland/libc/include/syscall.h +++ b/userland/libc/include/syscall.h @@ -31,6 +31,7 @@ #define SYS_STAT 23 #define SYS_MSLEEP 24 #define SYS_UPTIME 25 +#define SYS_MKDIR 26 int syscall(uint32_t eax, uint32_t ebx, uint32_t ecx, uint32_t edx, uint32_t esi, uint32_t edi); |