...

Source file src/github.com/mattn/go-tty/tty_sys5.go

Documentation: github.com/mattn/go-tty

     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