Searched refs:ourEnviron (Results 1 - 2 of 2) sorted by relevance

/macosx-10.10.1/tcl-105/tcl/tcl/generic/
H A DtclEnv.c27 char **ourEnviron; /* Cache of the array that we allocate. We member in struct:__anon12511
189 if ((env.ourEnviron != environ) || (length+2 > env.ourEnvironSize)) {
194 if ((env.ourEnvironSize != 0) && (env.ourEnviron != NULL)) {
195 ckfree((char *) env.ourEnviron);
197 environ = env.ourEnviron = newEnviron;
/macosx-10.10.1/tcl-105/tcl84/tcl/generic/
H A DtclEnv.c29 static char **ourEnviron = NULL;/* Cache of the array that we allocate. variable
191 if ((ourEnviron != environ) || ((length + 2) > environSize)) {
198 if ((environSize != 0) && (ourEnviron != NULL)) {
199 ckfree((char *) ourEnviron);
201 environ = ourEnviron = newEnviron;

Completed in 120 milliseconds