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