2017-08-23 22:46:56 +00:00
|
|
|
// +build !windows
|
|
|
|
// +build !appengine
|
|
|
|
|
|
|
|
package isatty
|
|
|
|
|
2018-04-09 21:56:19 +00:00
|
|
|
// IsCygwinTerminal return true if the file descriptor is a cygwin or msys2
|
2017-08-23 22:46:56 +00:00
|
|
|
// terminal. This is also always false on this environment.
|
|
|
|
func IsCygwinTerminal(fd uintptr) bool {
|
|
|
|
return false
|
|
|
|
}
|