summaryrefslogtreecommitdiff
path: root/vendor/github.com/tetratelabs/wazero/internal/platform/path.go
blob: 361049ae2500d2af03599759460c61ac00f0d03d (plain)
1
2
3
4
5
6
//go:build !windows

package platform

// ToPosixPath returns the input, as only windows might return backslashes.
func ToPosixPath(in string) string { return in }