mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-25 17:57:54 +00:00
12 lines
153 B
Go
12 lines
153 B
Go
// +build windows plan9 solaris
|
|
|
|
package goterm
|
|
|
|
func getWinsize() (*winsize, error) {
|
|
ws := new(winsize)
|
|
|
|
ws.Col = 80
|
|
ws.Row = 24
|
|
|
|
return ws, nil
|
|
}
|