diff options
author | 2020-04-25 20:55:33 -0700 | |
---|---|---|
committer | 2020-04-25 21:11:48 -0700 | |
commit | 3b2f0a633cf6894054b54521319a8d6f1750095f (patch) | |
tree | e7dac1c126fbfb69fc01520e6b3914989eeced3a /vendor/golang.org/x/sys/unix/env_unix.go | |
parent | c920a8607cce2a50117209ab02c417a9e7274b51 (diff) | |
download | v2-3b2f0a633cf6894054b54521319a8d6f1750095f.tar.gz v2-3b2f0a633cf6894054b54521319a8d6f1750095f.tar.zst v2-3b2f0a633cf6894054b54521319a8d6f1750095f.zip |
Update dependencies and remove vendor folder
Diffstat (limited to 'vendor/golang.org/x/sys/unix/env_unix.go')
-rw-r--r-- | vendor/golang.org/x/sys/unix/env_unix.go | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/vendor/golang.org/x/sys/unix/env_unix.go b/vendor/golang.org/x/sys/unix/env_unix.go deleted file mode 100644 index 84178b0a..00000000 --- a/vendor/golang.org/x/sys/unix/env_unix.go +++ /dev/null @@ -1,31 +0,0 @@ -// Copyright 2010 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris - -// 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() -} - -func Unsetenv(key string) error { - return syscall.Unsetenv(key) -} |