vendor: update syscalls dependency

(cherry picked from commit dcc045f03c)
This commit is contained in:
Péter Szilágyi
2019-02-14 18:14:28 +02:00
parent 7bd6f39dc3
commit d9be337669
249 changed files with 83392 additions and 14253 deletions

View File

@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build darwin dragonfly freebsd linux netbsd openbsd solaris
// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris
// Unix environment variables.
@@ -25,3 +25,7 @@ func Clearenv() {
func Environ() []string {
return syscall.Environ()
}
func Unsetenv(key string) error {
return syscall.Unsetenv(key)
}