Files
bantam/term_other.go
T

14 lines
266 B
Go
Raw Normal View History

2026-08-08 23:10:10 +03:00
//go:build !linux && !darwin && !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")
}