blob: 38dd9dc724fd4cb5a85a426308b15501190eb9a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//go:build windows || plan9 || netbsd || aix || illumos || solaris || js
// +build windows plan9 netbsd aix illumos solaris js
package copy
import (
"os"
)
// TODO: check plan9 netbsd aix illumos solaris in future
// pcopy is for just named pipes. Windows doesn't support them
func pcopy(dest string, info os.FileInfo) error {
return nil
}
|