barometer: update DMA's vendoring packages
[barometer.git] / src / dma / vendor / github.com / mattn / go-isatty / isatty_solaris.go
index 1f0c6bf..bdd5c79 100644 (file)
@@ -14,3 +14,9 @@ func IsTerminal(fd uintptr) bool {
        err := unix.IoctlSetTermio(int(fd), unix.TCGETA, &termio)
        return err == nil
 }
+
+// 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
+}