blob: 794d18b256b0e8b7e544b32fbc3fd1a164b6e913 (
plain) (
tree)
|
|
// +build !openbsd
package lynx
// UnveilCommands takes a slice of commands & unveils them one by one,
// it does nothing on non OpenBSD systems.
func UnveilCommands(_ []string) error {
return nil
}
|