summaryrefslogtreecommitdiffstats
path: root/client/go/script-utils/startcbinary/execvp_windows.go
blob: f0642dcf9a0338669b6011a28f4a31272ed9fee1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
// Author: arnej

//go:build windows

package startcbinary

import (
	"fmt"
)

func myexecvp(prog string, args []string, envv []string) error {
	return fmt.Errorf("cannot execvp: %s", prog)
}