blob: dc72a7db6c0893fd85e6cbd36749b17ff4cfaf3e (
plain) (
tree)
|
|
//go:build !openbsd
// +build !openbsd
// Stub functions for GOOS that don't support unix.Unveil()
package main
func Unveil(path string, perms string) error {
return nil
}
func UnveilBlock() error {
return nil
}
func UnveilPaths(paths []string, perms string) error {
return nil
}
|