github.com/10XDev/rclone@v1.52.3-0.20200626220027-16af9ab76b2a/backend/local/fadvise_other.go (about) 1 //+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 }