mirror of
https://github.com/zyedidia/micro.git
synced 2026-02-06 07:00:24 +09:00
12 lines
247 B
Go
12 lines
247 B
Go
// +build !linux,!darwin,!freebsd,!dragonfly,!openbsd_amd64
|
|
|
|
package main
|
|
|
|
import "errors"
|
|
|
|
const TermEmuSupported = false
|
|
|
|
func RunTermEmulator(input string, wait bool, getOutput bool) error {
|
|
return errors.New("Unsupported operating system")
|
|
}
|