mirror of
https://github.com/containers/podman.git
synced 2025-10-30 01:17:00 +08:00
13 lines
153 B
Go
13 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
|
|
}
|