Files
stfs/pkg/fs/filesystem_non_unix.go
2022-01-16 01:17:29 +01:00

8 lines
145 B
Go

//go:build windows || wasm
package fs
const (
O_ACCMODE = 0x3 // It is safe to hard-code this bit as the bits are not being set from the OS
)