putenv(3) Library Functions Manual putenv(3) putenv - LIBRARY Standard C library (libc, -lc) #include int putenv(char *string); glibc (. feature_test_macros(7)): putenv(): _XOPEN_SOURCE || /* glibc >= 2.19: */ _DEFAULT_SOURCE || /* glibc <= 2.19: */ _SVID_SOURCE putenv() . string name=value. name , string . name , name value. , string, , . The putenv() function returns zero on success. On failure, it returns a nonzero value, and errno is set to indicate the error. ENOMEM . attributes(7). +----------------------------+----------------------------------------------------------+--------------------------+ | | | | +----------------------------+----------------------------------------------------------+--------------------------+ |putenv() | | MT-Unsafe const:env | +----------------------------+----------------------------------------------------------+--------------------------+ POSIX.1-2008. POSIX.1-2001, SVr2, 4.3BSD-Reno. putenv() , glibc 2.0, glibc 2.1 . Since glibc 2.1.2, the glibc implementation conforms to SUSv2: the pointer string given to putenv() is used. In particular, this string becomes part of the environment; changing it later will change the environment. (Thus, it is an error to call putenv() with an automatic variable as the argument, then return from the calling function while string is still part of the environment.) However, from glibc 2.0 to glibc 2.1.1, it differs: a copy of the string is used. On the one hand this causes a memory leak, and on the other hand it violates SUSv2. The 4.3BSD-Reno version, like glibc 2.0, uses a copy; this is fixed in all modern BSDs. SUSv2 const glibc 2.1.3. GNU C . string : putenv("NAME"); . . clearenv(3), getenv(3), setenv(3), unsetenv(3), environ(7) Alexey, Azamat Hackimov , kogamatranslator49 , Kogan, Max Is , Yuri Kozlov ; GNU 3 , . . , , . Linux man-pages 6.06 31 2023 . putenv(3)