github.com/rclone/rclone@v1.66.1-0.20240517100346-7b89735ae726/backend/local/fadvise_other.go (about) 1 //go:build !linux 2 3 package local 4 5 import ( 6 "io" 7 "os" 8 ) 9 10 func newFadviseReadCloser(o *Object, f *os.File, offset, limit int64) io.ReadCloser { 11 return f 12 }