1
0
mirror of https://github.com/restic/restic.git synced 2025-05-01 07:40:49 +00:00

11 lines
150 B
Go
Raw Normal View History

//go:build !windows
// +build !windows
package restorer
import "os"
func truncateSparse(f *os.File, size int64) error {
return f.Truncate(size)
}