2018-08-19 22:34:53 +00:00
|
|
|
// +build !windows
|
|
|
|
// +build !appengine
|
|
|
|
|
|
|
|
package isatty
|
|
|
|
|
2019-01-21 15:59:59 +00:00
|
|
|
// IsCygwinTerminal return true if the file descriptor is a cygwin or msys2
|
2018-08-19 22:34:53 +00:00
|
|
|
// terminal. This is also always false on this environment.
|
|
|
|
func IsCygwinTerminal(fd uintptr) bool {
|
|
|
|
return false
|
|
|
|
}
|