blob: d1263f047c5039579244b5b3896a0816a3d5ea6a (
plain) (
blame)
1
2
3
4
5
6
|
//go:build !(linux || darwin || freebsd || netbsd || openbsd)
package main
// termCols has no portable implementation here; COLUMNS or the default is used.
func termCols() (int, bool) { return 0, false }
|