protect/protect_stubs.go
2020-05-10 07:04:34 -06:00

16 lines
191 B
Go

//+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
}