forked from x/icebergs
13 lines
248 B
Go
13 lines
248 B
Go
//go:build windows
|
|
// +build windows
|
|
|
|
package pty
|
|
|
|
import (
|
|
"errors"
|
|
"os"
|
|
)
|
|
|
|
func Setsize(*os.File, *Winsize) error { return errors.New("unsupported") }
|
|
func open() (pty, tty *os.File, err error) { return nil, nil, errors.New("unsuported") }
|