Codebase list golang-github-cloudflare-tableflip / lintian-fixes/main dup_fd_windows.go
lintian-fixes/main

Tree @lintian-fixes/main (Download .tar.gz)

dup_fd_windows.go @lintian-fixes/mainraw · history · blame

1
2
3
4
5
6
7
package tableflip

import "errors"

func dupFd(fd uintptr, name fileName) (*file, error) {
	return nil, errors.New("tableflip: duplicating file descriptors is not supported on this platform")
}