Sign in
edge
/
apidVerifyApiKey
/
c48842a30a9f78ea4fb4fbbc2a69bbe693683cfa
/
.
/
vendor
/
github.com
/
onsi
/
ginkgo
/
internal
/
remote
/
syscall_dup_unix.go
blob: cacdd0e6496ebf309f206ffcf5d66d0738155ce0 [
file
] [
log
] [
blame
]
// +build !linux !arm64
// +build !windows
// +build !solaris
package remote
import "syscall"
func syscallDup(oldfd int, newfd int) (err error) {
return syscall.Dup2(oldfd, newfd)
}