mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-14 02:57:52 +08:00
18 lines
391 B
Go
18 lines
391 B
Go
// +build linux solaris
|
|
|
|
// Copyright 2015 go-termios Author. All Rights Reserved.
|
|
// https://github.com/go-termios/termios
|
|
// Author: John Lenton <chipaca@github.com>
|
|
|
|
package sys
|
|
|
|
import "golang.org/x/sys/unix"
|
|
|
|
const (
|
|
getAttrIOCTL = unix.TCGETS
|
|
setAttrNowIOCTL = unix.TCSETS
|
|
setAttrDrainIOCTL = unix.TCSETSW
|
|
setAttrFlushIOCTL = unix.TCSETSF
|
|
flushIOCTL = unix.TCFLSH
|
|
)
|