mirror of
https://github.com/golang/term.git
synced 2026-01-29 15:12:09 +03:00
All other unix platforms use the same implementation in term_unix.go. The existing implementation in term_solaris.go is equivalent, so use the common implementation on solaris as well. Change-Id: Ie4f67fd3508bea54772c4422ff1dcf73ba76d985 Reviewed-on: https://go-review.googlesource.com/c/term/+/307669 Trust: Tobias Klauser <tobias.klauser@gmail.com> Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
11 lines
281 B
Go
11 lines
281 B
Go
// Copyright 2019 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package term
|
|
|
|
import "golang.org/x/sys/unix"
|
|
|
|
const ioctlReadTermios = unix.TCGETS
|
|
const ioctlWriteTermios = unix.TCSETS
|