aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/runtime/env_unix.go
blob: 42dfd5158fa0e776ec11116d5b8d6bbafe121bc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//go:build linux || darwin || wasip1

package runtime

// int setenv(const char *name, const char *val, int replace);
//
//export setenv
func libc_setenv(name *byte, val *byte, replace int32) int32

// int unsetenv(const char *name);
//
//export unsetenv
func libc_unsetenv(name *byte) int32

func setenv(key, val *byte) {
	// ignore any errors
	libc_setenv(key, val, 1)
}

func unsetenv(key *byte) {
	// ignore any errors
	libc_unsetenv(key)
}