mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-04 11:07:46 +00:00
d92e16e6dc
Co-authored-by: TachyonicBytes <TB>
9 lines
267 B
Go
9 lines
267 B
Go
package syscall
|
|
|
|
func Setuid(code int) (err error)
|
|
func Setgid(code int) (err error)
|
|
func Setreuid(ruid, euid int) (err error)
|
|
func Setregid(rgid, egid int) (err error)
|
|
func Setresuid(ruid, euid, suid int) (err error)
|
|
func Setresgid(rgid, egid, sgid int) (err error)
|