automation-tests/common/pkg/unshare/getenv_linux_nocgo.go

12 lines
117 B
Go

// +build linux,!cgo
package unshare
import (
"os"
)
func getenv(name string) string {
return os.Getenv(name)
}