aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/sid77/drop/syscall/setres.go
blob: afe43b9fec848636e6f41aa3385167d3538d1857 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// +build linux

package syscall

import (
	"syscall"
)

func Setuid(uid int) error {
	err := syscall.Setresuid(uid, uid, uid)
	return err
}

func Setgid(gid int) error {
	err := syscall.Setresgid(gid, gid, gid)
	return err
}