env-posix.cpp revision 739c77783387df1b22501b27bd870869a865d20c
/* $Id$ */
/** @file
* InnoTek Portable Runtime - Environment, Posix.
*/
/*
* Copyright (C) 2006 InnoTek Systemberatung GmbH
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* General Public License as published by the Free Software Foundation,
* in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
* distribution. VirtualBox OSE is distributed in the hope that it will
* be useful, but WITHOUT ANY WARRANTY of any kind.
*
* If you received this file as part of a commercial VirtualBox
* distribution, then only the terms of your commercial VirtualBox
* license agreement apply instead of the previous paragraph.
*/
/*******************************************************************************
* Header Files *
*******************************************************************************/
#include <stdlib.h>
#include <errno.h>
{
}
{
}
{
/** @todo putenv is a source memory leaks. deal with this on a per system basis. */
if (!putenv((char *)pszVarEqualValue))
return 0;
return RTErrConvertFromErrno(errno);
}
{
#if defined(_MSC_VER)
/* make a local copy and feed it to putenv. */
if (*pszValue)
else
{
}
return 0;
return RTErrConvertFromErrno(errno);
#else
return VINF_SUCCESS;
return RTErrConvertFromErrno(errno);
#endif
}