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