mirror of
https://github.com/Luzifer/ots.git
synced 2024-10-01 01:06:09 -04:00
38b1cd09f4
Signed-off-by: Knut Ahlers <knut@ahlers.me>
18 lines
238 B
Go
18 lines
238 B
Go
// +build darwin freebsd openbsd netbsd dragonfly
|
|
// +build !appengine,!js
|
|
|
|
package logrus
|
|
|
|
import (
|
|
"io"
|
|
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
const ioctlReadTermios = unix.TIOCGETA
|
|
|
|
type Termios unix.Termios
|
|
|
|
func initTerminal(w io.Writer) {
|
|
}
|