This symbol is used by std.file.thisExePath on OpenBSD.
libphobos/ChangeLog:
* src/std/process.d (searchPathFor): Change visibility to package.
(cherry picked from commit
cecc437e952e35f8a7907553586605cbd0bba82a)
// Searches the PATH variable for the given executable file,
// (checking that it is in fact executable).
version (Posix)
-private string searchPathFor(in char[] executable)
+package(std) string searchPathFor(in char[] executable)
@trusted //TODO: @safe nothrow
{
import std.algorithm.iteration : splitter;