moby--moby/term/termios_darwin.go

9 lines
104 B
Go
Raw Normal View History

package term
2013-01-29 01:06:46 +00:00
2013-01-29 01:07:38 +00:00
import "syscall"
2013-01-29 01:06:46 +00:00
const (
2013-01-29 02:37:54 +00:00
getTermios = syscall.TIOCGETA
setTermios = syscall.TIOCSETA
2013-01-29 01:06:46 +00:00
)