File: tty_solaris.go

package info (click to toggle)
golang-github-mattn-go-tty 0.0.7-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 128 kB
  • sloc: makefile: 3
file content (13 lines) | stat: -rw-r--r-- 164 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
//go:build solaris
// +build solaris

package tty

import (
	"golang.org/x/sys/unix"
)

const (
	ioctlReadTermios  = unix.TCGETS
	ioctlWriteTermios = unix.TCSETS
)