aboutsummaryrefslogtreecommitdiff
path: root/unveil_stub.go
blob: e53e564cd934eb41e7b26e956105619f4b66d03d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//go:build !openbsd
// +build !openbsd

/*
 * Copyright (c)      2024  Runxi Yu <me@runxiyu.org>
 * Copyright (c) 2022-2024  Anirudh Oppiliappan <x@icyphox.sh>
 *
 * SPDX-License-Identifier: AGPL-3.0-only
 * Overall, the work is licensed under AGPL-3.0-only. However, code by
 * Anirudh Oppiliappan is actually licensed under MIT/Expat. Check
 * git-blame(1).
 */

package main

func Unveil(path string, perms string) error {
	return nil
}

func UnveilBlock() error {
	return nil
}

func UnveilPaths(paths []string, perms string) error {
	return nil
}