summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibCore/System.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-12-16 20:27:25 +0100
committerAndreas Kling <kling@serenityos.org>2021-12-16 22:48:17 +0100
commit01c2756e9a6796d56372e2776854c6378b00c0eb (patch)
tree85cd27602f29d89126383a586c1dfb179ac6542d /Userland/Libraries/LibCore/System.h
parentf69bd3bd46534f3e675d32e86d360830e5fab100 (diff)
downloadserenity-01c2756e9a6796d56372e2776854c6378b00c0eb.zip
LibCore: Add syscall wrapper for mkdir()
Diffstat (limited to 'Userland/Libraries/LibCore/System.h')
-rw-r--r--Userland/Libraries/LibCore/System.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibCore/System.h b/Userland/Libraries/LibCore/System.h
index c5bfcb28b8..7032b5553e 100644
--- a/Userland/Libraries/LibCore/System.h
+++ b/Userland/Libraries/LibCore/System.h
@@ -63,5 +63,6 @@ ErrorOr<void> setgid(gid_t);
ErrorOr<void> setegid(gid_t);
ErrorOr<bool> isatty(int fd);
ErrorOr<void> symlink(StringView target, StringView link_path);
+ErrorOr<void> mkdir(StringView path, mode_t);
}