2018-08-20 19:14:19 +00:00
|
|
|
//+build !windows,!linux
|
2018-08-19 10:38:26 +00:00
|
|
|
|
|
|
|
package local
|
|
|
|
|
|
|
|
import "os"
|
|
|
|
|
|
|
|
// preAllocate the file for performance reasons
|
|
|
|
func preAllocate(size int64, out *os.File) error {
|
|
|
|
return nil
|
|
|
|
}
|
2020-03-06 12:41:48 +00:00
|
|
|
|
|
|
|
// setSparse makes the file be a sparse file
|
|
|
|
func setSparse(out *os.File) error {
|
|
|
|
return nil
|
|
|
|
}
|