mirror of
https://github.com/restic/restic.git
synced 2025-10-22 17:13:22 +00:00
10 lines
176 B
Go
10 lines
176 B
Go
![]() |
//go:build unix && !aix
|
||
|
|
||
|
package termstatus
|
||
|
|
||
|
import "golang.org/x/sys/unix"
|
||
|
|
||
|
func Tcsetpgrp(fd int, pid int) error {
|
||
|
return unix.IoctlSetPointerInt(fd, unix.TIOCSPGRP, pid)
|
||
|
}
|