Files
bantam/term_other.go
T
2026-08-15 08:27:24 +03:00

14 lines
315 B
Go

//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")
}