1
0
mirror of https://github.com/restic/restic.git synced 2025-05-14 14:18:24 +00:00
2022-09-24 21:39:39 +02:00

11 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)
}