Codebase list golang-github-cloudflare-tableflip / 835df44c-3af0-4482-9c1c-c46063b02249/main env_syscalls.go
835df44c-3af0-4482-9c1c-c46063b02249/main

Tree @835df44c-3af0-4482-9c1c-c46063b02249/main (Download .tar.gz)

env_syscalls.go @835df44c-3af0-4482-9c1c-c46063b02249/mainraw · history · blame

// +build !windows

package tableflip

import (
	"os"
	"syscall"
)

var stdEnv = &env{
	newProc:     newOSProcess,
	newFile:     os.NewFile,
	environ:     os.Environ,
	getenv:      os.Getenv,
	closeOnExec: syscall.CloseOnExec,
}