protect/protect_stubs.go

17 lines
229 B
Go
Raw Permalink Normal View History

//go:build !openbsd && !linux
// +build !openbsd,!linux
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
}