github.com/searKing/golang/go@v1.2.117/io/copy_darwin.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  package io
     6  
     7  import "os"
     8  
     9  func copyFileClone(srcFile, dstFile *os.File) error {
    10  	return ErrNotImplemented
    11  }
    12  
    13  func copyFileRange(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int, err error) {
    14  	return 0, ErrNotImplemented
    15  }