Sign in
chromium
/
external
/
github.com
/
mattn
/
go-tty
/
refs/heads/master
/
.
/
tty_solaris.go
blob: 1ea64da28ee783459f8d94979eb1761c37c74ef5 [
file
] [
log
] [
blame
] [
edit
]
//go:build solaris
// +build solaris
package tty
import (
"golang.org/x/sys/unix"
)
const (
ioctlReadTermios = unix.TCGETS
ioctlWriteTermios = unix.TCSETS
)