github.com/fcwu/docker@v1.4.2-0.20150115145920-2a69ca89f0df/pkg/system/lstat_windows.go (about)

     1  // +build windows
     2  
     3  package system
     4  
     5  func Lstat(path string) (*Stat, error) {
     6  	// should not be called on cli code path
     7  	return nil, ErrNotSupportedPlatform
     8  }