updated non breaking dependencies

This commit is contained in:
evilsocket 2018-05-12 13:12:48 +02:00
parent b75694f540
commit a164517717
No known key found for this signature in database
GPG key ID: 1564D7F30393A456
212 changed files with 36545 additions and 13693 deletions

View file

@ -1,4 +1,4 @@
// Copyright 2010 The Go Authors. All rights reserved.
// 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.
@ -25,3 +25,7 @@ func Clearenv() {
func Environ() []string {
return syscall.Environ()
}
func Unsetenv(key string) error {
return syscall.Unsetenv(key)
}