1
0
Fork 0
mirror of https://github.com/Luzifer/continuous-spark.git synced 2024-10-18 12:54:24 +00:00
continuous-spark/vendor/golang.org/x/sys/unix/env_unset.go
Knut Ahlers 164e4b60f5
Vendor dependencies
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2017-07-28 07:24:58 +02:00

14 lines
306 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 go1.4
package unix
import "syscall"
func Unsetenv(key string) error {
// This was added in Go 1.4.
return syscall.Unsetenv(key)
}