isatty_others.go 252 B

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