mirror of
https://git.kernel.org/pub/scm/libs/libcap/libcap.git
synced 2026-01-28 18:34:49 +00:00
In a couple of places I've made some Go constants internal to the Go packages. They use underscores and weren't Go-style constants and weren't really appropriate for use outside the context of the Go packages. Signed-off-by: Andrew G. Morgan <agm@google.com> Signed-off-by: Andrew G. Morgan <morgan@kernel.org>
9 lines
131 B
Go
9 lines
131 B
Go
// +build linux,!arm
|
|
// +build linux,!386
|
|
|
|
package cap
|
|
|
|
import "syscall"
|
|
|
|
var sysSetGroupsVariant = uintptr(syscall.SYS_SETGROUPS)
|