mirror of
https://github.com/btcsuite/btcd.git
synced 2025-02-24 06:47:59 +01:00
16 lines
223 B
Go
16 lines
223 B
Go
|
//go:build !openbsd
|
||
|
|
||
|
package ossec
|
||
|
|
||
|
func Unveil(path string, perms string) error {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func Pledge(promises, execpromises string) error {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func PledgePromises(promises string) error {
|
||
|
return nil
|
||
|
}
|