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

10 lines
102 B
Go

//go:build !(windows || wasm)
package fs
import "syscall"
const (
O_ACCMODE = syscall.O_ACCMODE
)