mirror of
https://github.com/rclone/rclone.git
synced 2024-11-08 01:25:14 +01:00
11 lines
167 B
Go
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
|
|
}
|