summaryrefslogtreecommitdiffstats
path: root/pkg/terminal/terminal_nosysioctl.go
blob: 01904999a06691d172a958045502ba2a09cd4aaa (plain)
1
2
3
4
5
6
7
// +build windows plan9 solaris

package terminal

func getWinsize() (int, int, error) {
	return 80, 24, nil
}