mirror of
https://github.com/rclone/rclone
synced 2025-01-09 11:46:24 +01:00
13 lines
172 B
Go
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)
|
||
|
}
|