1
0
mirror of https://github.com/rancher/rke.git synced 2025-07-04 11:07:43 +00:00
rke/vendor/golang.org/x/sys/unix/env_unix.go

32 lines
616 B
Go
Raw Normal View History

2018-07-03 16:45:27 +00:00
// Copyright 2010 The Go Authors. All rights reserved.
2017-11-01 01:51:50 +00:00
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
2019-08-19 17:52:07 +00:00
// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris
2017-11-01 01:51:50 +00:00
// Unix environment variables.
package unix
import "syscall"
func Getenv(key string) (value string, found bool) {
return syscall.Getenv(key)
}
func Setenv(key, value string) error {
return syscall.Setenv(key, value)
}
func Clearenv() {
syscall.Clearenv()
}
func Environ() []string {
return syscall.Environ()
}
2019-08-19 17:52:07 +00:00
func Unsetenv(key string) error {
return syscall.Unsetenv(key)
}