Stubbed Setuid and friends. Stubbed Exec (#3290)

Co-authored-by: TachyonicBytes <TB>
This commit is contained in:
tachyonicbytes
2022-11-16 11:14:27 +02:00
committed by GitHub
parent 4daf4fa0a0
commit d92e16e6dc
2 changed files with 11 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
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)
+3
View File
@@ -0,0 +1,3 @@
package syscall
func Exec(argv0 string, argv []string, envv []string) (err error)