mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-24 10:21:20 -05:00
8 lines
132 B
Go
8 lines
132 B
Go
// +build linux
|
|
|
|
package tty
|
|
|
|
const (
|
|
ioctlReadTermios = 0x5401 // syscall.TCGETS
|
|
ioctlWriteTermios = 0x5402 // syscall.TCSETS
|
|
)
|