14 lines
164 B
Go
14 lines
164 B
Go
|
//go:build solaris
|
||
|
// +build solaris
|
||
|
|
||
|
package tty
|
||
|
|
||
|
import (
|
||
|
"golang.org/x/sys/unix"
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
ioctlReadTermios = unix.TCGETS
|
||
|
ioctlWriteTermios = unix.TCSETS
|
||
|
)
|