forked from toolshed/abra
		
	
		
			
				
	
	
		
			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
 | |
| )
 |