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