mirror of
https://github.com/StackExchange/blackbox.git
synced 2025-12-15 02:53:00 +02:00
11 lines
221 B
Go
11 lines
221 B
Go
//go:build windows
|
|
// +build windows
|
|
|
|
package bbutil
|
|
|
|
// Umask is a no-op on Windows, and calls syscall.Umask on all other
|
|
// systems. On Windows it returns 0, which is a decoy.
|
|
func Umask(mask int) int {
|
|
return 0o000
|
|
}
|