github.com/dougm/docker@v1.5.0/pkg/system/stat_windows.go (about)

     1  // +build windows
     2  
     3  package system
     4  
     5  import (
     6  	"errors"
     7  	"syscall"
     8  )
     9  
    10  func fromStatT(s *syscall.Win32FileAttributeData) (*Stat, error) {
    11  	return nil, errors.New("fromStatT should not be called on windows path")
    12  }