LibCore: Add syscall wrapper for mkstemp()

This commit is contained in:
Andreas Kling 2021-12-16 21:10:59 +01:00
commit aa7e8b5797
Notes: sideshowbarker 2024-07-17 22:41:29 +09:00
2 changed files with 9 additions and 0 deletions

View file

@ -65,5 +65,6 @@ ErrorOr<bool> isatty(int fd);
ErrorOr<void> symlink(StringView target, StringView link_path);
ErrorOr<void> mkdir(StringView path, mode_t);
ErrorOr<pid_t> fork();
ErrorOr<int> mkstemp(Span<char> pattern);
}