kubernetes-entrypoint/vendor/github.com/onsi/ginkgo/internal/remote/syscall_dup_unix.go

12 lines
186 B
Go

// +build !linux !arm64
// +build !windows
// +build !solaris
package remote
import "syscall"
func syscallDup(oldfd int, newfd int) (err error) {
return syscall.Dup2(oldfd, newfd)
}