mirror of
https://github.com/restic/restic.git
synced 2025-10-23 01:23:21 +00:00
10 lines
170 B
Go
10 lines
170 B
Go
![]() |
//go:build unix && !linux
|
||
|
|
||
|
package termstatus
|
||
|
|
||
|
import "golang.org/x/sys/unix"
|
||
|
|
||
|
func Tcgetpgrp(ttyfd int) (int, error) {
|
||
|
return unix.IoctlGetInt(ttyfd, unix.TIOCGPGRP)
|
||
|
}
|