mirror of
https://github.com/yggdrasil-network/yggdrasil-go.git
synced 2025-04-29 22:55:06 +03:00
13 lines
301 B
Go
13 lines
301 B
Go
// +build !aix,!darwin,!dragonfly,!freebsd,!linux,!netbsd,!openbsd,!solaris
|
|
|
|
package main
|
|
|
|
import "errors"
|
|
|
|
func setuid(uid int) error {
|
|
return errors.New("setting uid not supported on this platform")
|
|
}
|
|
|
|
func setgid(gid int) error {
|
|
return errors.New("setting gid not supported on this platform")
|
|
}
|