mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-11-04 18:13:42 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			158 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			158 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// +build darwin freebsd openbsd netbsd
 | 
						|
 | 
						|
package term
 | 
						|
 | 
						|
import (
 | 
						|
	"golang.org/x/sys/unix"
 | 
						|
)
 | 
						|
 | 
						|
const (
 | 
						|
	getTermios = unix.TIOCGETA
 | 
						|
	setTermios = unix.TIOCSETA
 | 
						|
)
 |