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

LibCore+LibFileSystem: Move resolve_executable_from_environment to Core

This commit is contained in:
Ben Wiederhake 2023-05-29 22:15:13 +02:00 committed by Jelle Raaijmakers
parent 00bd443d1c
commit 26efdf9d4f
3 changed files with 39 additions and 26 deletions

View file

@ -267,4 +267,6 @@ ErrorOr<AddressInfoVector> getaddrinfo(char const* nodename, char const* servnam
ErrorOr<void> posix_fallocate(int fd, off_t offset, off_t length);
#endif
ErrorOr<String> resolve_executable_from_environment(StringView filename, int flags = 0);
}