Files
cloudly-min/.rclone_repo/vendor/github.com/sevlyar/go-daemon/syscall_dup.go
2020-01-13 03:37:51 +00:00

13 lines
172 B
Go
Executable File

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