restic/internal/fs/setflags_other.go
2025-11-30 11:53:23 +01:00

11 lines
191 B
Go

//go:build !linux
package fs
import "os"
// OS-specific replacements of setFlags can set file status flags
// that improve I/O performance.
func setFlags(_ *os.File) error {
return nil
}