blob: ef6255960071a9676d149c10809f36bcfb794da8 [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)
}