//go:build !windows // +build !windows package fileutil import "syscall" // o_NOFOLLOW prevents open from following symlinks. // Available on Linux, macOS, and other Unix systems. const o_NOFOLLOW = syscall.O_NOFOLLOW