mirror of
https://github.com/restic/restic.git
synced 2025-10-19 23:53:21 +00:00
7 lines
124 B
Go
7 lines
124 B
Go
//go:build unix && !solaris
|
|
|
|
package terminal
|
|
|
|
import "golang.org/x/sys/unix"
|
|
|
|
func getpgrp() int { return unix.Getpgrp() }
|