From e05d72ba8f09866b768f3da7776b807072ed7b9b Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Mon, 23 Oct 2023 22:13:19 +0200 Subject: VFS/libc: Create a syscall for mkdir and add the function to libc --- scalls/mkdir.h | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 scalls/mkdir.h (limited to 'scalls/mkdir.h') diff --git a/scalls/mkdir.h b/scalls/mkdir.h new file mode 100644 index 0000000..0bf0043 --- /dev/null +++ b/scalls/mkdir.h @@ -0,0 +1,2 @@ +#include +int syscall_mkdir(const char *path, int mode); -- cgit v1.2.3