IOQ3 commit 1943

This commit is contained in:
Richard Allen 2011-05-18 02:25:05 +00:00
parent 0492f22ca6
commit b76f7e24ff

View file

@ -772,7 +772,10 @@ set/unset environment variables (empty value removes it)
*/
void Sys_SetEnv(const char *name, const char *value)
{
if(value)
_putenv(va("%s=%s", name, value));
else
_putenv(va("%s=", name));
}
/*