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

LibCore: Add Core::System::readlink

This commit is contained in:
Peter Elliott 2022-10-24 22:15:58 -06:00 committed by Linus Groh
parent 612a3324d7
commit 415eb17490
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);
}