14 lines
179 B
Go
14 lines
179 B
Go
// +build !openbsd
|
|
|
|
package pu
|
|
|
|
import "fmt"
|
|
|
|
func U(path string, perms string) {
|
|
fmt.Printf("WARNING: no unveil (%s, %s)\n", path, perms)
|
|
}
|
|
|
|
func UBlock() error {
|
|
return nil
|
|
}
|