github.com/coocood/badger@v1.5.1-0.20200528065104-c02ac3616d04/fileutil/preallocate_others.go (about)

     1  // +build !linux
     2  
     3  package fileutil
     4  
     5  import "os"
     6  
     7  func preallocate(f *os.File, size int64) error {
     8  	return preallocateTrunc(f, size)
     9  }