mirror of
https://github.com/gizak/termui.git
synced 2025-04-27 13:48:51 +08:00
9 lines
132 B
Go
9 lines
132 B
Go
// +build linux
|
|
|
|
package tty
|
|
|
|
const (
|
|
ioctlReadTermios = 0x5401 // syscall.TCGETS
|
|
ioctlWriteTermios = 0x5402 // syscall.TCSETS
|
|
)
|