vendor: update syscalls dependency

This commit is contained in:
Péter Szilágyi
2019-02-14 18:14:28 +02:00
parent ba90a4aaa4
commit dcc045f03c
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)
}