summary refs log tree commit diff stats
path: root/block_other.go
diff options
context:
space:
mode:
Diffstat (limited to 'block_other.go')
-rw-r--r--block_other.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/block_other.go b/block_other.go
new file mode 100644
index 0000000..65b7131
--- /dev/null
+++ b/block_other.go
@@ -0,0 +1,9 @@
+// +build !openbsd
+
+package lynx
+
+// UnveilBlock is just a wrapper around unix.UnveilBlock, it does
+// nothing on non OpenBSD systems.
+func UnveilBlock() error {
+	return nil
+}