//go:build !windows && !js && !illumos && !solaris package fsapi import "syscall" // Simple aliases to constants in the syscall package for portability with // platforms which do not have them (e.g. windows) const ( O_DIRECTORY = syscall.O_DIRECTORY O_NOFOLLOW = syscall.O_NOFOLLOW O_NONBLOCK = syscall.O_NONBLOCK )