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
)