1
0
mirror of https://github.com/restic/restic.git synced 2025-05-04 09:20: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)
}