mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-18 00:47:48 +08:00

full diff: https://github.com/creack/pty/compare/v1.1.18...v1.1.21 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
|
|
}
|