mirror of
https://github.com/golang/term.git
synced 2026-01-29 07:02:06 +03:00
Fixes golang/go#42496 Change-Id: Iae2ddb916904d9b3947bec9638c9fbf892df7b7c Reviewed-on: https://go-review.googlesource.com/c/crypto/+/269177 Reviewed-by: Tobias Klauser <tobias.klauser@gmail.com> Trust: Tobias Klauser <tobias.klauser@gmail.com> Trust: Michael Munday <mike.munday@ibm.com> Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com> TryBot-Result: Go Bot <gobot@golang.org>
11 lines
285 B
Go
11 lines
285 B
Go
// Copyright 2020 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 terminal
|
|
|
|
import "golang.org/x/sys/unix"
|
|
|
|
const ioctlReadTermios = unix.TCGETS
|
|
const ioctlWriteTermios = unix.TCSETS
|