protect/protect_stubs.go
2023-03-21 06:49:24 -06:00

17 lines
229 B
Go

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