mirror of
https://github.com/octoleo/restic.git
synced 2024-11-06 05:17:50 +00:00
13 lines
206 B
Go
13 lines
206 B
Go
|
//go:build !linux
|
||
|
// +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
|
||
|
}
|