1
0
mirror of https://github.com/rancher/rke.git synced 2025-09-04 00:14:49 +00:00
Files
rke/vendor/golang.org/x/sys/windows/env_unset.go

16 lines
326 B
Go
Raw Normal View History

2018-07-03 09:45:27 -07:00
// Copyright 2014 The Go Authors. All rights reserved.
2017-11-02 12:04:20 +02:00
// 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)
}