10 /* str should be a duplicated version of the input string;
11 len is the length of the key including the = sign */
12 int __put_env(char *str, size_t len, int overwrite);
14 int putenv(const char *str)
25 for ( z = str ; *z ; z++ ) {
39 return __put_env(s, e-str, 1);