blob: 4880d13d26d803691bc1eccecf02895a5e5c1a3a (
plain)
1
2
3
4
5
6
7
8
9
10
|
// +build darwin freebsd openbsd netbsd dragonfly
// +build !appengine,!gopherjs
package logrus
import "golang.org/x/sys/unix"
const ioctlReadTermios = unix.TIOCGETA
type Termios unix.Termios
|