2021-06-14 16:38:42 +00:00
|
|
|
// Copyright 2020 The Go Authors. All rights reserved.
|
2017-07-19 03:18:15 +00:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2021-06-14 16:38:42 +00:00
|
|
|
package term
|
2017-07-19 03:18:15 +00:00
|
|
|
|
2018-07-25 23:21:04 +00:00
|
|
|
import "golang.org/x/sys/unix"
|
2017-07-19 03:18:15 +00:00
|
|
|
|
2018-07-25 23:21:04 +00:00
|
|
|
const ioctlReadTermios = unix.TCGETS
|
|
|
|
const ioctlWriteTermios = unix.TCSETS
|