elvish/pkg/sys/ioctl_notbsd.go
2019-12-23 20:00:59 +00:00

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
)