mirror of https://github.com/docker/cli.git
11 lines
216 B
Go
11 lines
216 B
Go
|
//go:build !windows && !go1.12
|
||
|
// +build !windows,!go1.12
|
||
|
|
||
|
package pty
|
||
|
|
||
|
import "os"
|
||
|
|
||
|
func ioctl(f *os.File, cmd, ptr uintptr) error {
|
||
|
return ioctlInner(f.Fd(), cmd, ptr) // fall back to blocking io (old behavior)
|
||
|
}
|