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)
}