github.com/pingcap/badger@v1.5.1-0.20230103063557-828f39b09b6d/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  }