full diff: https://github.com/creack/pty/compare/v1.1.11...v1.1.18 Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
14 lines
152 B
Go
14 lines
152 B
Go
//go:build aix
|
|
// +build aix
|
|
|
|
package pty
|
|
|
|
const (
|
|
TIOCGWINSZ = 0
|
|
TIOCSWINSZ = 0
|
|
)
|
|
|
|
func ioctl(fd, cmd, ptr uintptr) error {
|
|
return ErrUnsupported
|
|
}
|