1
0
mirror of https://github.com/rclone/rclone.git synced 2025-02-09 13:13:53 +02:00

13 lines
172 B
Go

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