protect/protect_stubs.go
2023-01-14 06:16:00 -07:00

17 lines
212 B
Go

//go:build !openbsd
// +build !openbsd
package protect
func unveil(path string, flags string) error {
return nil
}
func unveilBlock() error {
return nil
}
func pledge(promises string) error {
return nil
}