1 // +build solaris 2 3 package tty 4 5 import ( 6 "golang.org/x/sys/unix" 7 ) 8 9 const ( 10 ioctlReadTermios = unix.TCGETA 11 ioctlWriteTermios = unix.TCSETA 12 ) 13
View as plain text