2018-02-27 19:46:50 +00:00
|
|
|
// +build !linux !arm64
|
|
|
|
// +build !windows
|
2019-06-27 11:30:45 +00:00
|
|
|
// +build go1.7
|
2018-02-27 19:46:50 +00:00
|
|
|
|
|
|
|
package daemon
|
|
|
|
|
2019-06-27 11:30:45 +00:00
|
|
|
import "golang.org/x/sys/unix"
|
2018-02-27 19:46:50 +00:00
|
|
|
|
|
|
|
func syscallDup(oldfd int, newfd int) (err error) {
|
2019-06-27 11:30:45 +00:00
|
|
|
return unix.Dup2(oldfd, newfd)
|
2018-02-27 19:46:50 +00:00
|
|
|
}
|