summaryrefslogtreecommitdiff
path: root/vendor/github.com/onsi/ginkgo/internal/remote/syscall_dup_unix.go
blob: ef6255960071a9676d149c10809f36bcfb794da8 (plain)
1
2
3
4
5
6
7
8
9
10
11
// +build !linux !arm64
// +build !windows
// +build !solaris

package remote

import "syscall"

func syscallDup(oldfd int, newfd int) (err error) {
	return syscall.Dup2(oldfd, newfd)
}