summary refs log tree commit diff stats
path: root/pledge_other.go
diff options
context:
space:
mode:
Diffstat (limited to 'pledge_other.go')
-rw-r--r--pledge_other.go21
1 files changed, 21 insertions, 0 deletions
diff --git a/pledge_other.go b/pledge_other.go
new file mode 100644
index 0000000..cc2f076
--- /dev/null
+++ b/pledge_other.go
@@ -0,0 +1,21 @@
+// +build !openbsd
+
+package lynx
+
+// Pledge is just a wrapper to unix.Pledge. It returns nil on
+// unsupported systems.
+func Pledge(_, _ string) error {
+	return nil
+}
+
+// PledgePromises is just a wrapper to unix.PledgePromises. It returns
+// nil on unsupported systems.
+func PledgePromises(_ string) error {
+	return nil
+}
+
+// PledgeExecpromises is just a wrapper to unix.PledgeExecpromises. It
+// returns nil on unsupported systems.
+func PledgeExecpromises(_ string) error {
+	return nil
+}