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