protect/protect_stubs.go

17 lines
212 B
Go
Raw Permalink Normal View History

2023-01-14 06:16:00 -07:00
//go:build !openbsd
// +build !openbsd
2020-05-08 07:55:32 -06:00
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
}