File: openbsd.go

package info (click to toggle)
browserpass 3.7.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 4,836 kB
  • sloc: javascript: 80,027; makefile: 544
file content (10 lines) | stat: -rw-r--r-- 159 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
// +build openbsd

package openbsd

import "golang.org/x/sys/unix"

// Pledge allowed system calls
func Pledge(promises string) {
	unix.Pledge(promises, "")
}