blob: 71fc0f1bad0328d2db9b967b29cb3aa78acab723 [file] [log] [blame]
package system
// Umask is not supported on the windows platform.
func Umask(newmask int) (oldmask int, err error) {
// should not be called on cli code path
return 0, ErrNotSupportedPlatform
}