mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
553b0b9731
Update includes next packages: * golang.org/x/sys 8f0908ab3b2457e2e15403d3697c9ef5cb4b57a9 * github.com/fsnotify/fsnotify v1.2.11 * github.com/tonistiigi/fifo b4c3a126bac4051ae3fa83bfcb3c60ab7a9da0dd Signed-off-by: Alexander Morozov <lk4d4@docker.com>
15 lines
327 B
Go
15 lines
327 B
Go
// Copyright 2014 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 windows
|
|
// +build go1.4
|
|
|
|
package windows
|
|
|
|
import "syscall"
|
|
|
|
func Unsetenv(key string) error {
|
|
// This was added in Go 1.4.
|
|
return syscall.Unsetenv(key)
|
|
}
|