LibCore: Add Core::System::readlink

This commit is contained in:
Peter Elliott 2022-10-24 22:15:58 -06:00 committed by Linus Groh
commit 415eb17490
Notes: sideshowbarker 2024-07-17 07:06:47 +09:00
2 changed files with 22 additions and 0 deletions

View file

@ -193,5 +193,6 @@ ErrorOr<int> posix_openpt(int flags);
ErrorOr<void> grantpt(int fildes);
ErrorOr<void> unlockpt(int fildes);
ErrorOr<void> access(StringView pathname, int mode);
ErrorOr<String> readlink(StringView pathname);
}