1// +build !windows
2// +build !appengine
3
4package isatty
5
6// IsCygwinTerminal() return true if the file descriptor is a cygwin or msys2
7// terminal. This is also always false on this environment.
8func IsCygwinTerminal(fd uintptr) bool {
9 return false
10}