11 lines
280 B
Go
11 lines
280 B
Go
// Copyright (C) 2018 Marius Schellenberger
|
|
|
|
// +build !openbsd
|
|
|
|
package godrop
|
|
|
|
// Unveil is currently only supported on OpenBSD.
|
|
func Unveil(path, flags string) error { return nil }
|
|
|
|
// UnveilBlock is currently only supported on OpenBSD.
|
|
func UnveilBlock() error { return nil }
|