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

package terminal

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