mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-02 06:12:56 +00:00
9 lines
241 B
Go
9 lines
241 B
Go
// +build !windows appengine
|
|
|
|
package isatty
|
|
|
|
// IsCygwinTerminal() return true if the file descriptor is a cygwin or msys2
|
|
// terminal. This is also always false on this environment.
|
|
func IsCygwinTerminal(fd uintptr) bool {
|
|
return false
|
|
}
|