mark2web/vendor/github.com/mattn/go-tty/tty_solaris.go

14 lines
164 B
Go
Raw Normal View History

2022-02-28 10:28:34 +01:00
//go:build solaris
// +build solaris
package tty
import (
"golang.org/x/sys/unix"
)
const (
ioctlReadTermios = unix.TCGETS
ioctlWriteTermios = unix.TCSETS
)