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
commit 26efdf9d4f
Notes: sideshowbarker 2024-07-16 22:58:46 +09:00
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);
}