forked from TrueCloudLab/rclone
11 lines
160 B
Go
11 lines
160 B
Go
|
//+build !windows
|
||
|
|
||
|
package local
|
||
|
|
||
|
import "os"
|
||
|
|
||
|
// preAllocate the file for performance reasons
|
||
|
func preAllocate(size int64, out *os.File) error {
|
||
|
return nil
|
||
|
}
|