1
mirror of https://github.com/rclone/rclone synced 2025-01-13 17:06:24 +01:00
rclone/backend/local/preallocate_other.go
2018-09-19 16:04:57 +01:00

11 lines
167 B
Go

//+build !windows,!linux
package local
import "os"
// preAllocate the file for performance reasons
func preAllocate(size int64, out *os.File) error {
return nil
}