lyx_mirror/src/support/putenv.C
Lars Gullik Bjønnes 635a7afc3d remove some using for functions never to be found in std::
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4354 a592a061-630c-0410-9148-cb99ea01b6c8
2002-06-10 17:31:57 +00:00

11 lines
142 B
C

#include <config.h>
#include "lyxlib.h"
#include <cstdlib>
int lyx::putenv(char const * str)
{
return ::putenv(const_cast<char*>(str));
}