...

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

Documentation: github.com/mattn/go-tty

     1  // +build darwin dragonfly freebsd netbsd openbsd
     2  
     3  package tty
     4  
     5  import (
     6  	"syscall"
     7  )
     8  
     9  const (
    10  	ioctlReadTermios  = syscall.TIOCGETA
    11  	ioctlWriteTermios = syscall.TIOCSETA
    12  )
    13  

View as plain text