mirror of
https://github.com/restic/restic.git
synced 2026-02-10 22:33:22 -05: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() }
|