14 lines
441 B
Go
14 lines
441 B
Go
// Copyright (C) 2018 Marius Schellenberger
|
|
|
|
// +build !openbsd
|
|
|
|
package godrop
|
|
|
|
// Pledge is currently only supported on OpenBSD.
|
|
func Pledge(promises, execpromises string) error { return nil }
|
|
|
|
// PledgePromises is currently only supported on OpenBSD.
|
|
func PledgePromises(promises string) error { return nil }
|
|
|
|
// PledgeExecPromises is currently only supported on OpenBSD.
|
|
func PledgeExecpromises(execpromises string) error { return nil }
|