2015-09-10 14:17:51 +00:00
|
|
|
// Based on ssh/terminal:
|
|
|
|
// 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.
|
|
|
|
|
2017-05-17 20:50:43 +00:00
|
|
|
// +build !appengine
|
|
|
|
|
2015-09-10 14:17:51 +00:00
|
|
|
package logrus
|
|
|
|
|
|
|
|
import "syscall"
|
|
|
|
|
|
|
|
const ioctlReadTermios = syscall.TCGETS
|
|
|
|
|
|
|
|
type Termios syscall.Termios
|