Files
stfs/pkg/fs/filesystem_unix.go

10 lines
92 B
Go

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