DEBSOURCES
Skip Quicknav
sources / golang-github-containers-storage / 1.59.1%2Bds1-2 / pkg / unshare / getenv_linux_nocgo.go
1234567891011
//go:build linux && !cgo package unshare import ( "os" ) func getenv(name string) string { return os.Getenv(name) }