Files
libmutton/core/utilitiesUNIX.go
T

13 lines
288 B
Go

//go:build !windows
package core
import "syscall"
// setUmask sets the file mode creation mask (umask) for the current process.
// The call to syscall.Umask needs to be embedded in another function to allow
// compilation on Windows.
func setUmask(umask int) {
syscall.Umask(umask)
}