mirror of
				https://github.com/yggdrasil-network/yggdrasil-go.git
				synced 2025-11-04 11:15:07 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			241 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			241 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// +build !unix
 | 
						|
 | 
						|
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")
 | 
						|
}
 |