2014-11-13 12:00:04 -08:00
|
|
|
package system
|
|
|
|
|
2015-07-29 00:13:12 +08:00
|
|
|
// Umask is not supported on the windows platform.
|
2014-11-13 12:00:04 -08:00
|
|
|
func Umask(newmask int) (oldmask int, err error) {
|
|
|
|
// should not be called on cli code path
|
|
|
|
return 0, ErrNotSupportedPlatform
|
|
|
|
}
|