From aa7e8b5797d498208edd73d1fb2533bc29d5c2fe Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 16 Dec 2021 21:10:59 +0100 Subject: LibCore: Add syscall wrapper for mkstemp() --- Userland/Libraries/LibCore/System.h | 1 + 1 file changed, 1 insertion(+) (limited to 'Userland/Libraries/LibCore/System.h') diff --git a/Userland/Libraries/LibCore/System.h b/Userland/Libraries/LibCore/System.h index c4b668739a..e9ce8f1d7f 100644 --- a/Userland/Libraries/LibCore/System.h +++ b/Userland/Libraries/LibCore/System.h @@ -65,5 +65,6 @@ ErrorOr isatty(int fd); ErrorOr symlink(StringView target, StringView link_path); ErrorOr mkdir(StringView path, mode_t); ErrorOr fork(); +ErrorOr mkstemp(Span pattern); } -- cgit v1.2.3