summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibCore/System.h
diff options
context:
space:
mode:
authorLucas CHOLLET <lucas.chollet@free.fr>2022-06-08 14:39:59 +0200
committerAndreas Kling <kling@serenityos.org>2022-06-09 22:08:04 +0200
commitd288c700c7caedbb2963dddac94a80097fde0798 (patch)
tree36ff589f2c047169ed162c47223a5e4b26834c65 /Userland/Libraries/LibCore/System.h
parent348750a9f4fd597276f2160decfe704ead08939e (diff)
downloadserenity-d288c700c7caedbb2963dddac94a80097fde0798.zip
LibCore: Add a wrapper for endgrent()
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 75364d8b1d..1d73d28380 100644
--- a/Userland/Libraries/LibCore/System.h
+++ b/Userland/Libraries/LibCore/System.h
@@ -100,6 +100,7 @@ ErrorOr<void> clock_settime(clockid_t clock_id, struct timespec* ts);
ErrorOr<pid_t> posix_spawn(StringView path, posix_spawn_file_actions_t const* file_actions, posix_spawnattr_t const* attr, char* const arguments[], char* const envp[]);
ErrorOr<pid_t> posix_spawnp(StringView path, posix_spawn_file_actions_t* const file_actions, posix_spawnattr_t* const attr, char* const arguments[], char* const envp[]);
ErrorOr<off_t> lseek(int fd, off_t, int whence);
+ErrorOr<void> endgrent();
struct WaitPidResult {
pid_t pid;