d846b54292
Signed-off-by: Zhang Wei <zhangwei555@huawei.com>
13 lines
238 B
Go
13 lines
238 B
Go
// +build !windows
|
|
|
|
package system
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
// Umask sets current process's file mode creation mask to newmask
|
|
// and return oldmask.
|
|
func Umask(newmask int) (oldmask int, err error) {
|
|
return syscall.Umask(newmask), nil
|
|
}
|