Fix "PR c++/92804 ICE trying to use concept as a nested-name-specifier"
[official-gcc.git] / libgo / go / os / env_default.go
blobc11ccce7e3d87244c03ded11906b6593edd45eb5
1 // Copyright 2019 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
5 // +build !windows
7 package os
9 import "syscall"
11 func environForSysProcAttr(sys *syscall.SysProcAttr) ([]string, error) {
12 return Environ(), nil