2017-04-17 18:08:24 -04:00
|
|
|
// Copyright 2013 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.
|
|
|
|
|
2022-03-16 10:24:03 -04:00
|
|
|
//go:build darwin || dragonfly || freebsd || netbsd || openbsd
|
2017-04-17 18:08:24 -04:00
|
|
|
|
2020-11-23 15:51:54 -05:00
|
|
|
package term
|
2017-04-17 18:08:24 -04:00
|
|
|
|
2017-09-29 09:29:30 -04:00
|
|
|
import "golang.org/x/sys/unix"
|
2017-04-17 18:08:24 -04:00
|
|
|
|
2017-09-29 09:29:30 -04:00
|
|
|
const ioctlReadTermios = unix.TIOCGETA
|
|
|
|
const ioctlWriteTermios = unix.TIOCSETA
|