1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 10:07:44 +00:00

LibCore: Implement Core::System::lseek

This commit is contained in:
sin-ack 2022-01-18 14:42:45 +00:00 committed by Andreas Kling
parent 4d2e3de94c
commit 301f4c469f
2 changed files with 9 additions and 0 deletions

View file

@ -87,6 +87,7 @@ ErrorOr<Optional<struct passwd>> getpwuid(uid_t);
ErrorOr<Optional<struct group>> getgrgid(gid_t);
ErrorOr<void> clock_settime(clockid_t clock_id, struct timespec* ts);
ErrorOr<pid_t> posix_spawnp(StringView const 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);
struct WaitPidResult {
pid_t pid;