1PUTENV(3) Linux Programmer's Manual PUTENV(3)
2
3
4
6 putenv - change or add an environment variable
7
9 #include <stdlib.h>
10
11 int putenv(char *string);
12
13 Feature Test Macro Requirements for glibc (see feature_test_macros(7)):
14
15 putenv(): _XOPEN_SOURCE
16 || /* Glibc since 2.19: */ _DEFAULT_SOURCE
17 || /* Glibc versions <= 2.19: */ _SVID_SOURCE
18
20 The putenv() function adds or changes the value of environment vari‐
21 ables. The argument string is of the form name=value. If name does
22 not already exist in the environment, then string is added to the envi‐
23 ronment. If name does exist, then the value of name in the environment
24 is changed to value. The string pointed to by string becomes part of
25 the environment, so altering the string changes the environment.
26
28 The putenv() function returns zero on success, or nonzero if an error
29 occurs. In the event of an error, errno is set to indicate the cause.
30
32 ENOMEM Insufficient space to allocate new environment.
33
35 For an explanation of the terms used in this section, see at‐
36 tributes(7).
37
38 ┌──────────┬───────────────┬─────────────────────┐
39 │Interface │ Attribute │ Value │
40 ├──────────┼───────────────┼─────────────────────┤
41 │putenv() │ Thread safety │ MT-Unsafe const:env │
42 └──────────┴───────────────┴─────────────────────┘
44 POSIX.1-2001, POSIX.1-2008, SVr4, 4.3BSD.
45
47 The putenv() function is not required to be reentrant, and the one in
48 glibc 2.0 is not, but the glibc 2.1 version is.
49
50 Since version 2.1.2, the glibc implementation conforms to SUSv2: the
51 pointer string given to putenv() is used. In particular, this string
52 becomes part of the environment; changing it later will change the en‐
53 vironment. (Thus, it is an error to call putenv() with an automatic
54 variable as the argument, then return from the calling function while
55 string is still part of the environment.) However, glibc versions 2.0
56 to 2.1.1 differ: a copy of the string is used. On the one hand this
57 causes a memory leak, and on the other hand it violates SUSv2.
58
59 The 4.4BSD version, like glibc 2.0, uses a copy.
60
61 SUSv2 removes the const from the prototype, and so does glibc 2.1.3.
62
63 The GNU C library implementation provides a nonstandard extension. If
64 string does not include an equal sign:
65
66 putenv("NAME");
67
68 then the named variable is removed from the caller's environment.
69
71 clearenv(3), getenv(3), setenv(3), unsetenv(3), environ(7)
72
74 This page is part of release 5.10 of the Linux man-pages project. A
75 description of the project, information about reporting bugs, and the
76 latest version of this page, can be found at
77 https://www.kernel.org/doc/man-pages/.
78
79
80
81GNU 2019-03-06 PUTENV(3)