mirror of
https://github.com/docker/cli.git
synced 2026-09-24 15:30:10 -05:00
full diff: https://github.com/creack/pty/compare/v1.18.0...v1.21.0 Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
14 lines
157 B
Go
14 lines
157 B
Go
//go:build aix
|
|
// +build aix
|
|
|
|
package pty
|
|
|
|
const (
|
|
TIOCGWINSZ = 0
|
|
TIOCSWINSZ = 0
|
|
)
|
|
|
|
func ioctlInner(fd, cmd, ptr uintptr) error {
|
|
return ErrUnsupported
|
|
}
|