mirror of
https://github.com/containers/gvisor-tap-vsock.git
synced 2025-09-26 21:01:42 +08:00
10 lines
107 B
Go
10 lines
107 B
Go
//go:build windows
|
|
// +build windows
|
|
|
|
package fs
|
|
|
|
func Umask(mask int) int {
|
|
// no-op for now
|
|
return 0
|
|
}
|