github.com/sbward/docker@v1.4.2-0.20150114010528-c9dab702bed3/pkg/system/umask_windows.go (about)

     1  // +build windows
     2  
     3  package system
     4  
     5  func Umask(newmask int) (oldmask int, err error) {
     6  	// should not be called on cli code path
     7  	return 0, ErrNotSupportedPlatform
     8  }