forked from TrueCloudLab/restic
10 lines
150 B
Go
10 lines
150 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package restorer
|
|
|
|
import "os"
|
|
|
|
func truncateSparse(f *os.File, size int64) error {
|
|
return f.Truncate(size)
|
|
}
|