Codebase list golang-github-sevlyar-go-daemon / HEAD syscall_dup_pre17.go
HEAD

Tree @HEAD (Download .tar.gz)

syscall_dup_pre17.go @HEADraw · history · blame

// +build !linux !arm64
// +build !windows
// +build !go1.7

package daemon

import (
	"syscall"
)

func syscallDup(oldfd int, newfd int) (err error) {
	return syscall.Dup2(oldfd, newfd)
}