protect/protect_stubs.go

16 lines
191 B
Go
Raw Normal View History

2020-05-08 07:55:32 -06:00
//+build !openbsd
package protect
2020-05-10 07:04:34 -06:00
func unveil(path string, flags string) error {
return nil
}
2020-05-08 07:55:32 -06:00
2020-05-10 07:04:34 -06:00
func unveilBlock() error {
return nil
}
2020-05-08 07:55:32 -06:00
2020-05-10 07:04:34 -06:00
func pledge(promises string) error {
return nil
}