//go:build !linux && !darwin && !dragonfly && !freebsd && !netbsd && !openbsd && !windows package main import "fmt" func termWidth() int { return 80 } func isTerminal(fd int) bool { return false } func makeRaw(fd int) (func(), error) { return nil, fmt.Errorf("raw terminal not supported on this platform") }