Searched refs:envstring (Results 1 - 3 of 3) sorted by relevance

/barrelfish-2018-10-04/usr/eclipseclp/Kernel/src/
H A Dbip_misc.c397 char *envstring; local
405 envstring = getenv(name);
406 if (!envstring || strcmp(envstring, new_value))
408 /* the memory associated with envstring is leaked! */
409 envstring = (char *)malloc(len);
410 strcat(strcat(strcpy(envstring, name), "="), new_value);
411 if (putenv(envstring))
413 free(envstring);
H A Dos_support.c338 putenv(char *envstring) argument
340 return _putenv(envstring);
/barrelfish-2018-10-04/usr/eclipseclp/Eplex/
H A Deplex.c885 char *envstring = Malloc(strlen("GRB_LICENSE_FILE=")+strlen(licloc)+1); local
886 strcat(strcpy(envstring,"GRB_LICENSE_FILE="),licloc);
888 putenv(envstring);

Completed in 156 milliseconds