fzf/src/protector/protector_openbsd.go

11 lines
204 B
Go
Raw Normal View History

2022-03-29 12:20:33 +00:00
//go:build openbsd
package protector
import "golang.org/x/sys/unix"
// Protect calls OS specific protections like pledge on OpenBSD
func Protect() {
unix.PledgePromises("stdio rpath tty proc exec")
}