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

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

dup_file_legacy.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) {
	return dupFd(fh.Fd(), name)
}