Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use golang.org/x/sys/unix for android and *BSD #49

Merged
merged 3 commits into from Jan 21, 2020

Commits on Jan 21, 2020

  1. Re-use implementation in isatty_tcgets.go for android

    The implementation for android uses the same ioctl as linux and aix
    which is already implemented in isatty_tcgets.go
    
    Also, this no longer requires to use the frozen syscall package.
    tklauser committed Jan 21, 2020
    Copy the full SHA
    65118e8 View commit details
    Browse the repository at this point in the history
  2. Use golang.org/x/sys/unix for IsTerminal on *BSD

    Use unix.IoctlGetTermios to implement IsTerminal on *BSD and no longer
    requires to use the frozen syscall package.
    tklauser committed Jan 21, 2020
    Copy the full SHA
    27288b1 View commit details
    Browse the repository at this point in the history
  3. go mod tidy

    Clean up unused version hashes in go.sum by running `go mod tidy`.
    tklauser committed Jan 21, 2020
    Copy the full SHA
    6ede958 View commit details
    Browse the repository at this point in the history