Codebase list golang-github-cloudflare-tableflip / debian/1.2.1_git20200514.4baec98-3 dup_file.go
debian/1.2.1_git20200514.4baec98-3

Tree @debian/1.2.1_git20200514.4baec98-3 (Download .tar.gz)

dup_file.go @debian/1.2.1_git20200514.4baec98-3raw · history · blame

// +build go1.12

package tableflip

import (
	"os"
)

func dupFile(fh *os.File, name fileName) (*file, error) {
	// os.File implements syscall.Conn from go 1.12
	return dupConn(fh, name)
}