github.com/searKing/golang/go@v1.2.117/io/copy_linux_not_experiment.go (about) 1 // Copyright 2020 The searKing Author. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 //go:build (linux && !cgo) || (linux && !experiment) 6 // +build linux,!cgo linux,!experiment 7 8 package io 9 10 import ( 11 "os" 12 ) 13 14 func copyFileClone(srcFile, dstFile *os.File) error { 15 return ErrNotImplemented 16 }