blob: 3be563f89e6638e61067c6938d24d8d859849dcb [file] [log] [blame]
// +build windows
package system
func Umask(newmask int) (oldmask int, err error) {
// should not be called on cli code path
return 0, ErrNotSupportedPlatform
}